chore: format code

This commit is contained in:
GitHub Action
2025-12-11 23:08:04 +00:00
parent bacf705ee5
commit 86f9c3acce
2 changed files with 13 additions and 0 deletions
+3
View File
@@ -90,6 +90,9 @@ export type UserMessage = {
tools?: {
[key: string]: boolean
}
thinking?: {
effort: "low" | "medium" | "high"
}
}
export type ProviderAuthError = {
+10
View File
@@ -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"]