Skip to content

Commit

Permalink
adding azure configs (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultLSDC authored Oct 4, 2024
1 parent 8915e92 commit c89641d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/agentlab/llm/llm_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@
max_input_tokens=7500,
max_new_tokens=500,
),
"azure/gpt-4o-2024-05-13": AzureModelArgs(
model_name="gpt-4o",
deployment_name="gpt-4o-2024-05-13",
max_total_tokens=128_000,
max_input_tokens=40_000,
max_new_tokens=4_000,
),
"azure/gpt-4o-2024-08-06": AzureModelArgs(
model_name="gpt-4o",
deployment_name="gpt-4o-2024-08-06",
max_total_tokens=128_000,
max_input_tokens=40_000,
max_new_tokens=4_000,
),
# ---------------- OSS LLMs ----------------#
"meta-llama/Meta-Llama-3-70B-Instruct": SelfHostedModelArgs(
model_name="meta-llama/Meta-Llama-3-70B-Instruct",
Expand Down

0 comments on commit c89641d

Please sign in to comment.