3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

adding mergeopt

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-02-13 15:00:05 -08:00
parent 01ba749a5d
commit 9fad15e2ca
4 changed files with 72 additions and 8 deletions

10
genaisrc/genaiscript.d.ts generated vendored
View file

@ -3111,6 +3111,16 @@ interface MD {
frontmatter: any,
format?: "yaml" | "json"
): string
/**
* Attempts to chunk markdown in text section in a way that does not splitting the heading structure.
* @param text
* @param options
*/
chunk(
text: string | WorkspaceFile,
options?: { maxTokens?: number; model?: string }
): Promise<TextChunk[]>
}
interface JSONL {