Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
naaive committed Nov 22, 2024
1 parent adbcad8 commit d8413a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openagent/conf/llm_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_available_providers() -> Dict[str, BaseChatModel]:

provider_configs = [
(["gpt-4o-mini", "gpt-4o"], get_openai_provider),
(["sonnet"], get_anthropic_provider),
(["claude-3-5-sonnet"], get_anthropic_provider),
(["gemini-1.5-pro", "gemini-1.5-flash"], get_gemini_provider),
]

Expand Down
6 changes: 3 additions & 3 deletions openagent/ui/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"markdown_description": "Using **Gemini 1.5 Flash**.",
"icon": "https://custom.typingmind.com/assets/models/gemini.png",
},
"sonnet": {
"name": "Sonnet",
"markdown_description": "Using **Sonnet**.",
"claude-3-5-sonnet": {
"name": "Claude 3.5 Sonnet",
"markdown_description": "Using **Claude 3.5 Sonnet**.",
"icon": "public/claude.png",
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{"name": "gpt-4o", "function_call_support": True},
{"name": "gemini-1.5-flash", "function_call_support": True},
{"name": "gemini-1.5-pro", "function_call_support": True},
{"name": "sonnet", "function_call_support": True},
{"name": "claude-3-5-sonnet", "function_call_support": True},
]

OPENSOURCE_MODELS = [
Expand Down

0 comments on commit d8413a4

Please sign in to comment.