Skip to content

Commit

Permalink
Merge pull request #96 from fixie-ai/juberti/nvidia
Browse files Browse the repository at this point in the history
Add GPT-4o Mini
  • Loading branch information
juberti authored Jul 18, 2024
2 parents 98cc1ca + 365faea commit 87a065f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions llm_benchmark_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
DEFAULT_GCS_BUCKET = "thefastest-data"

GPT_4O = "gpt-4o"
GPT_4O_MINI = "gpt-4o-mini"
GPT_4_TURBO = "gpt-4-turbo"
GPT_4_0125_PREVIEW = "gpt-4-0125-preview"
GPT_4_1106_PREVIEW = "gpt-4-1106-preview"
Expand Down Expand Up @@ -269,6 +270,7 @@ def _text_models():
api_key=os.getenv("AZURE_NCENTRALUS_OPENAI_API_KEY"),
base_url="https://fixie-centralus.openai.azure.com",
),
_Llm(GPT_4O_MINI),
# GPT-4 Turbo
_Llm(GPT_4_TURBO),
# GPT-4 Turbo Previews
Expand Down Expand Up @@ -408,6 +410,7 @@ def _text_models():
def _image_models():
return [
_Llm(GPT_4O),
_Llm(GPT_4O_MINI),
_Llm(GPT_4_TURBO),
_Llm("gpt-4-vision-preview", base_url="https://fixie-westus.openai.azure.com"),
_Llm("claude-3-opus-20240229"),
Expand Down

0 comments on commit 87a065f

Please sign in to comment.