-
-
Notifications
You must be signed in to change notification settings - Fork 11
upgrade eval agent models to sonnet-5 and gpt-5.6-luna #1393
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
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 |
|---|---|---|
|
|
@@ -13,8 +13,8 @@ import type { | |
|
|
||
| /** Default agent models — the target models for the skill (OpenRouter slugs). */ | ||
| export const DEFAULT_AGENT_MODELS = [ | ||
| "anthropic/claude-sonnet-4.6", | ||
| "anthropic/claude-opus-4.6", | ||
| "anthropic/claude-sonnet-5", | ||
| "openai/gpt-5.6-luna", | ||
| ]; | ||
|
Comment on lines
15
to
18
Contributor
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. Bug: The new default models include an OpenAI model incompatible with the Anthropic-direct provider, causing skill evaluations to fail silently when only Suggested FixValidate that the selected provider is compatible with all models at the start of the evaluation. If there is a mismatch, either filter out the incompatible models or throw a clear error detailing the configuration problem. Alternatively, revert the default models to a pair that is compatible with a single provider. Prompt for AI AgentAlso affects:
Member
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. We are only going to use OpenRouter from going on so this should be fine |
||
|
|
||
| /** Default judge model — cheap and fast, just needs to grade command plans. */ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.