mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix #7563
This commit is contained in:
parent
712231dcda
commit
01fbc0e8e7
3 changed files with 32 additions and 7 deletions
9
genaisrc/genaiscript.d.ts
generated
vendored
9
genaisrc/genaiscript.d.ts
generated
vendored
|
@ -406,6 +406,11 @@ interface ModelOptions extends ModelConnectionOptions, ModelTemplateOptions {
|
|||
*/
|
||||
temperature?: number
|
||||
|
||||
/**
|
||||
* Enables fallback tools mode
|
||||
*/
|
||||
fallbackTools?: boolean
|
||||
|
||||
/**
|
||||
* Some reasoning model support a reasoning effort parameter.
|
||||
*/
|
||||
|
@ -3511,7 +3516,7 @@ type ImportTemplateArgumentType =
|
|||
|
||||
interface ChatTurnGenerationContext {
|
||||
importTemplate(
|
||||
files: string | string[],
|
||||
files: ElementOrArray<string | WorkspaceFile>,
|
||||
arguments?: Record<string, ImportTemplateArgumentType>,
|
||||
options?: ImportTemplateOptions
|
||||
): void
|
||||
|
@ -4801,7 +4806,7 @@ declare function system(options: PromptSystemArgs): void
|
|||
* @param arguments
|
||||
*/
|
||||
declare function importTemplate(
|
||||
files: string | string[],
|
||||
files: ElementOrArray<string | WorkspaceFile>,
|
||||
arguments?: Record<string, ImportTemplateArgumentType>,
|
||||
options?: ImportTemplateOptions
|
||||
): void
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
"include": [
|
||||
"*.mjs",
|
||||
"*.mts",
|
||||
"src/*.mts",
|
||||
"./genaiscript.d.ts"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue