-
Notifications
You must be signed in to change notification settings - Fork 107
Add-claude-3.7 to repro journal #222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c9d2ef9
2d8d4de
24f48f3
463e0cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -184,6 +184,14 @@ | |
| max_new_tokens=2_000, | ||
| temperature=1e-1, | ||
| ), | ||
| "openrouter/anthropic/claude-3.7-sonnet": OpenRouterModelArgs( | ||
| model_name="anthropic/claude-3.7-sonnet", | ||
| max_total_tokens=200_000, | ||
| max_input_tokens=200_000, | ||
| max_new_tokens=8_192, | ||
| temperature=1e-1, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Non-intuitive number format
Tell me moreWhat is the issue?Scientific notation Why this mattersUsing scientific notation for a simple decimal value adds unnecessary cognitive load when reading the configuration. Suggested change ∙ Feature PreviewReplace all instances of 💬 Chat with Korbit by mentioning @korbit-ai. |
||
| vision_support=True, | ||
| ), | ||
| "openrouter/openai/o1-mini-2024-09-12": OpenRouterModelArgs( | ||
| model_name="openai/o1-mini-2024-09-12", | ||
| max_total_tokens=128_000, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid Claude Model Version
Tell me more
What is the issue?
The code references a non-existent Claude 3.7 model. Claude 3 only has 3.0 (Opus/Sonnet), 3.1, and 3.2 variants.
Why this matters
Using a non-existent model ID will cause runtime failures when the agent attempts to make API calls.
Suggested change ∙ Feature Preview
Correct the model version to use an existing Claude model. For example:
💬 Chat with Korbit by mentioning @korbit-ai.