Revert: feat: add models.dev schema ref for model autocomplete in ope… (#12242)

This commit is contained in:
Aiden Cline 2026-02-05 00:31:08 -06:00 committed by GitHub
parent d3a247bfff
commit 8c8d888140
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 20 deletions

View file

@ -1379,7 +1379,7 @@ export type PermissionConfig =
| PermissionActionConfig
export type AgentConfig = {
model?: Model
model?: string
/**
* Default model variant for this agent (applies only when using the agent's configured model).
*/
@ -1421,7 +1421,6 @@ export type AgentConfig = {
permission?: PermissionConfig
[key: string]:
| unknown
| Model
| string
| number
| {
@ -1651,7 +1650,7 @@ export type Config = {
template: string
description?: string
agent?: string
model?: Model
model?: string
subtask?: boolean
}
}
@ -1689,8 +1688,14 @@ export type Config = {
* When set, ONLY these providers will be enabled. All other providers will be ignored
*/
enabled_providers?: Array<string>
model?: Model
small_model?: Model
/**
* Model to use in the format of provider/model, eg anthropic/claude-2
*/
model?: string
/**
* Small model to use for tasks like title generation in the format of provider/model
*/
small_model?: string
/**
* Default agent to use when none is specified. Must be a primary agent. Falls back to 'build' if not set or if the specified agent is invalid.
*/