chore: format code
This commit is contained in:
parent
bacf705ee5
commit
86f9c3acce
2 changed files with 13 additions and 0 deletions
|
|
@ -90,6 +90,9 @@ export type UserMessage = {
|
|||
tools?: {
|
||||
[key: string]: boolean
|
||||
}
|
||||
thinking?: {
|
||||
effort: "low" | "medium" | "high"
|
||||
}
|
||||
}
|
||||
|
||||
export type ProviderAuthError = {
|
||||
|
|
|
|||
|
|
@ -5023,6 +5023,16 @@
|
|||
"additionalProperties": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"thinking": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"effort": {
|
||||
"type": "string",
|
||||
"enum": ["low", "medium", "high"]
|
||||
}
|
||||
},
|
||||
"required": ["effort"]
|
||||
}
|
||||
},
|
||||
"required": ["id", "sessionID", "role", "time", "agent", "model"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue