Skip to content

Commit 6e7c468

Browse files
committed
Change default claude model to 3.5 sonnet
1 parent 77a6792 commit 6e7c468

File tree

2 files changed

+2
-2
lines changed
  • examples/chat

2 files changed

+2
-2
lines changed

examples/chat/hello-providers/anthropic/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async def _():
3535
messages = chat.messages(format="anthropic")
3636
# Create a response message stream
3737
response = await llm.messages.create(
38-
model="claude-3-opus-20240229",
38+
model="claude-3-5-sonnet-20240620",
3939
messages=messages,
4040
stream=True,
4141
max_tokens=1000,

examples/chat/playground/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"openai": ["gpt-4o", "gpt-3.5-turbo"],
1717
"claude": [
1818
"claude-3-opus-20240229",
19-
"claude-3-sonnet-20240229",
19+
"claude-3-5-sonnet-20240620",
2020
"claude-3-haiku-20240307",
2121
],
2222
"google": ["gemini-1.5-pro-latest"],

0 commit comments

Comments
 (0)