wip
This commit is contained in:
parent
f6b24d81d4
commit
ccf1826400
4 changed files with 72 additions and 9 deletions
|
|
@ -1227,6 +1227,9 @@ export class Session extends HeyApiClient {
|
|||
[key: string]: boolean
|
||||
}
|
||||
system?: string
|
||||
thinking?: {
|
||||
effort: "default" | "medium" | "high"
|
||||
}
|
||||
parts?: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
},
|
||||
options?: Options<never, ThrowOnError>,
|
||||
|
|
@ -1244,6 +1247,7 @@ export class Session extends HeyApiClient {
|
|||
{ in: "body", key: "noReply" },
|
||||
{ in: "body", key: "tools" },
|
||||
{ in: "body", key: "system" },
|
||||
{ in: "body", key: "thinking" },
|
||||
{ in: "body", key: "parts" },
|
||||
],
|
||||
},
|
||||
|
|
@ -1313,6 +1317,9 @@ export class Session extends HeyApiClient {
|
|||
[key: string]: boolean
|
||||
}
|
||||
system?: string
|
||||
thinking?: {
|
||||
effort: "default" | "medium" | "high"
|
||||
}
|
||||
parts?: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
},
|
||||
options?: Options<never, ThrowOnError>,
|
||||
|
|
@ -1330,6 +1337,7 @@ export class Session extends HeyApiClient {
|
|||
{ in: "body", key: "noReply" },
|
||||
{ in: "body", key: "tools" },
|
||||
{ in: "body", key: "system" },
|
||||
{ in: "body", key: "thinking" },
|
||||
{ in: "body", key: "parts" },
|
||||
],
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2922,6 +2922,9 @@ export type SessionPromptData = {
|
|||
[key: string]: boolean
|
||||
}
|
||||
system?: string
|
||||
thinking?: {
|
||||
effort: "default" | "medium" | "high"
|
||||
}
|
||||
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
}
|
||||
path: {
|
||||
|
|
@ -3105,6 +3108,9 @@ export type SessionPromptAsyncData = {
|
|||
[key: string]: boolean
|
||||
}
|
||||
system?: string
|
||||
thinking?: {
|
||||
effort: "default" | "medium" | "high"
|
||||
}
|
||||
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
}
|
||||
path: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue