builder.io 1.17.22 → 1.17.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/index.cjs +304 -323
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +4 -4
- package/server/index.mjs +5 -5
- package/types/cli/repo-indexing/repo-indexing-utils.d.ts +9 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -20,6 +20,15 @@ export declare const runCodeGen: (sys: DevToolsSys, credentials: Credentials, se
|
|
|
20
20
|
tags?: object;
|
|
21
21
|
maxTokens?: number;
|
|
22
22
|
retriesAllowed?: number;
|
|
23
|
+
/**
|
|
24
|
+
* What kind of file to expect from the LLM.
|
|
25
|
+
* `'tool'`: The LLM will use the Write tool to output the file. We will intercept that
|
|
26
|
+
* and keep the file contents in-memory. File is not written to disk.
|
|
27
|
+
* `string`: The LLM will write the file directly to the file system. We will read the
|
|
28
|
+
* contents into memory and then delete the file from the file system. This is useful
|
|
29
|
+
* for writing large files that would otherwise consume a lot of tokens.
|
|
30
|
+
*/
|
|
31
|
+
expectFile?: "tool" | string;
|
|
23
32
|
}, metadata?: any) => Promise<string>;
|
|
24
33
|
interface GetAllDesignSystemsOpts {
|
|
25
34
|
/**
|