Merge remote-tracking branch 'origin/sqlite2' into sqlite2

This commit is contained in:
Dax Raad 2026-02-01 20:26:24 -05:00
commit 5f552534c7
121 changed files with 3044 additions and 685 deletions

View file

@ -1554,7 +1554,7 @@ export type FileNode = {
}
export type FileContent = {
type: "text"
type: "text" | "binary"
content: string
diff?: string
patch?: {

View file

@ -1378,6 +1378,10 @@ export type PermissionConfig =
export type AgentConfig = {
model?: string
/**
* Default model variant for this agent (applies only when using the agent's configured model).
*/
variant?: string
temperature?: number
top_p?: number
prompt?: string
@ -2049,7 +2053,7 @@ export type FileNode = {
}
export type FileContent = {
type: "text"
type: "text" | "binary"
content: string
diff?: string
patch?: {
@ -2143,6 +2147,7 @@ export type Agent = {
modelID: string
providerID: string
}
variant?: string
prompt?: string
options: {
[key: string]: unknown

View file

@ -9044,6 +9044,10 @@
"model": {
"type": "string"
},
"variant": {
"description": "Default model variant for this agent (applies only when using the agent's configured model).",
"type": "string"
},
"temperature": {
"type": "number"
},
@ -10591,7 +10595,7 @@
"properties": {
"type": {
"type": "string",
"const": "text"
"enum": ["text", "binary"]
},
"content": {
"type": "string"
@ -10869,6 +10873,9 @@
},
"required": ["modelID", "providerID"]
},
"variant": {
"type": "string"
},
"prompt": {
"type": "string"
},