Skip to content

Commit

Permalink
minor: add gpt-4o ctx size annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
ganler committed May 19, 2024
1 parent 2a3557a commit fc34193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repoqa/compute_score.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def compute_score(
train_context = "16k"
else:
train_context = fetch_hf_context(model_name)
elif model_name.startswith("gpt-4-turbo"):
elif model_name.startswith("gpt-4-turbo") or model_name.startswith("gpt-4o-"):
train_context = "128k"
elif model_name.startswith("gpt-3.5-"):
train_context = "16k"
Expand Down

0 comments on commit fc34193

Please sign in to comment.