Skip to content

Commit

Permalink
Change default claude model to 3.5 sonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Aug 27, 2024
1 parent 77a6792 commit 6e7c468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/chat/hello-providers/anthropic/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def _():
messages = chat.messages(format="anthropic")
# Create a response message stream
response = await llm.messages.create(
model="claude-3-opus-20240229",
model="claude-3-5-sonnet-20240620",
messages=messages,
stream=True,
max_tokens=1000,
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/playground/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"openai": ["gpt-4o", "gpt-3.5-turbo"],
"claude": [
"claude-3-opus-20240229",
"claude-3-sonnet-20240229",
"claude-3-5-sonnet-20240620",
"claude-3-haiku-20240307",
],
"google": ["gemini-1.5-pro-latest"],
Expand Down

0 comments on commit 6e7c468

Please sign in to comment.