Merge remote-tracking branch 'origin/sqlite2' into sqlite2
This commit is contained in:
commit
5f552534c7
121 changed files with 3044 additions and 685 deletions
|
|
@ -1554,7 +1554,7 @@ export type FileNode = {
|
|||
}
|
||||
|
||||
export type FileContent = {
|
||||
type: "text"
|
||||
type: "text" | "binary"
|
||||
content: string
|
||||
diff?: string
|
||||
patch?: {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue