Skip to content

Commit d8413a4

Browse files
committed
chore: rename
1 parent adbcad8 commit d8413a4

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

openagent/conf/llm_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_available_providers() -> Dict[str, BaseChatModel]:
6565

6666
provider_configs = [
6767
(["gpt-4o-mini", "gpt-4o"], get_openai_provider),
68-
(["sonnet"], get_anthropic_provider),
68+
(["claude-3-5-sonnet"], get_anthropic_provider),
6969
(["gemini-1.5-pro", "gemini-1.5-flash"], get_gemini_provider),
7070
]
7171

openagent/ui/profile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"markdown_description": "Using **Gemini 1.5 Flash**.",
2424
"icon": "https://custom.typingmind.com/assets/models/gemini.png",
2525
},
26-
"sonnet": {
27-
"name": "Sonnet",
28-
"markdown_description": "Using **Sonnet**.",
26+
"claude-3-5-sonnet": {
27+
"name": "Claude 3.5 Sonnet",
28+
"markdown_description": "Using **Claude 3.5 Sonnet**.",
2929
"icon": "public/claude.png",
3030
}
3131
}

tests/run_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{"name": "gpt-4o", "function_call_support": True},
1111
{"name": "gemini-1.5-flash", "function_call_support": True},
1212
{"name": "gemini-1.5-pro", "function_call_support": True},
13-
{"name": "sonnet", "function_call_support": True},
13+
{"name": "claude-3-5-sonnet", "function_call_support": True},
1414
]
1515

1616
OPENSOURCE_MODELS = [

0 commit comments

Comments
 (0)