Skip to content
Developer Preview

SessionSetModelParams

session/setModel params: the model-picker gesture. The selection is durable and applies to subsequent model calls.

  • commandId
  • model
  • sessionId
Source

schema/msp/experimental/msp.schema.json#/types/SessionSetModelParams

{
"description": "`session/setModel` params: the model-picker gesture. The\nselection is durable and applies to subsequent model calls.",
"properties": {
"commandId": {
"description": "The idempotency handle (UUIDv7).",
"type": "string"
},
"model": {
"$ref": "#/$defs/ModelSelection",
"description": "The selection."
},
"sessionId": {
"description": "The target session.",
"type": "string"
}
},
"required": [
"commandId",
"model",
"sessionId"
],
"type": "object"
}