From 8c8d8881400db46abf723293e80f03309064834f Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Thu, 5 Feb 2026 00:31:08 -0600 Subject: Revert: feat: add models.dev schema ref for model autocomplete in ope… (#12242) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/sdk/js/src/v2/gen/types.gen.ts | 15 ++++++++++----- packages/sdk/openapi.json | 10 ++++++---- 2 files changed, 16 insertions(+), 9 deletions(-) (limited to 'packages/sdk') diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 10483d71e..cb1606e3f 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -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 - 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. */ diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json index 1033c1f13..1425a6e9c 100644 --- a/packages/sdk/openapi.json +++ b/packages/sdk/openapi.json @@ -9028,7 +9028,7 @@ "type": "object", "properties": { "model": { - "$ref": "#/components/schemas/Model" + "type": "string" }, "variant": { "description": "Default model variant for this agent (applies only when using the agent's configured model).", @@ -9528,7 +9528,7 @@ "type": "string" }, "model": { - "$ref": "#/components/schemas/Model" + "type": "string" }, "subtask": { "type": "boolean" @@ -9606,10 +9606,12 @@ } }, "model": { - "$ref": "#/components/schemas/Model" + "description": "Model to use in the format of provider/model, eg anthropic/claude-2", + "type": "string" }, "small_model": { - "$ref": "#/components/schemas/Model" + "description": "Small model to use for tasks like title generation in the format of provider/model", + "type": "string" }, "default_agent": { "description": "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.", -- cgit v1.2.3