@@ -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 = {
@@ -6842,6 +6842,18 @@
"agent": {
"type": "string"
},
+ "model": {
+ "type": "object",
+ "properties": {
+ "providerID": {
+ "type": "string"
+ },
+ "modelID": {
+ "required": ["providerID", "modelID"]
"command": {
@@ -9797,6 +9809,18 @@