chore: generate
This commit is contained in:
parent
8b08d340ac
commit
2abafbcd2f
2 changed files with 32 additions and 0 deletions
|
|
@ -429,6 +429,10 @@ export type Part =
|
||||||
prompt: string
|
prompt: string
|
||||||
description: string
|
description: string
|
||||||
agent: string
|
agent: string
|
||||||
|
model?: {
|
||||||
|
providerID: string
|
||||||
|
modelID: string
|
||||||
|
}
|
||||||
command?: string
|
command?: string
|
||||||
}
|
}
|
||||||
| ReasoningPart
|
| ReasoningPart
|
||||||
|
|
@ -1853,6 +1857,10 @@ export type SubtaskPartInput = {
|
||||||
prompt: string
|
prompt: string
|
||||||
description: string
|
description: string
|
||||||
agent: string
|
agent: string
|
||||||
|
model?: {
|
||||||
|
providerID: string
|
||||||
|
modelID: string
|
||||||
|
}
|
||||||
command?: string
|
command?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6842,6 +6842,18 @@
|
||||||
"agent": {
|
"agent": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"model": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"providerID": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"modelID": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["providerID", "modelID"]
|
||||||
|
},
|
||||||
"command": {
|
"command": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
|
@ -9797,6 +9809,18 @@
|
||||||
"agent": {
|
"agent": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"model": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"providerID": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"modelID": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["providerID", "modelID"]
|
||||||
|
},
|
||||||
"command": {
|
"command": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue