chore: generate

pull/8761/head
GitHub Action 2026-01-15 23:19:16 +00:00
parent 8b08d340ac
commit 2abafbcd2f
2 changed files with 32 additions and 0 deletions

View File

@ -429,6 +429,10 @@ export type Part =
prompt: string
description: string
agent: string
model?: {
providerID: string
modelID: string
}
command?: string
}
| ReasoningPart
@ -1853,6 +1857,10 @@ export type SubtaskPartInput = {
prompt: string
description: string
agent: string
model?: {
providerID: string
modelID: string
}
command?: string
}

View File

@ -6842,6 +6842,18 @@
"agent": {
"type": "string"
},
"model": {
"type": "object",
"properties": {
"providerID": {
"type": "string"
},
"modelID": {
"type": "string"
}
},
"required": ["providerID", "modelID"]
},
"command": {
"type": "string"
}
@ -9797,6 +9809,18 @@
"agent": {
"type": "string"
},
"model": {
"type": "object",
"properties": {
"providerID": {
"type": "string"
},
"modelID": {
"type": "string"
}
},
"required": ["providerID", "modelID"]
},
"command": {
"type": "string"
}