@runtypelabs/sdk 1.10.2 → 1.11.0
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -394,7 +394,7 @@ interface BuiltInTool {
|
|
|
394
394
|
id: string;
|
|
395
395
|
name: string;
|
|
396
396
|
description: string;
|
|
397
|
-
category: 'image_generation' | 'web_search' | 'code_execution' | 'file_operations' | 'data_analysis';
|
|
397
|
+
category: 'image_generation' | 'web_search' | 'web_scraping' | 'code_execution' | 'file_operations' | 'data_analysis' | 'knowledge_retrieval' | 'text_to_speech' | 'voice_processing' | 'third_party_api';
|
|
398
398
|
providers: string[];
|
|
399
399
|
parametersSchema: JSONSchema;
|
|
400
400
|
defaultConfig?: JsonObject;
|
package/dist/index.d.ts
CHANGED
|
@@ -394,7 +394,7 @@ interface BuiltInTool {
|
|
|
394
394
|
id: string;
|
|
395
395
|
name: string;
|
|
396
396
|
description: string;
|
|
397
|
-
category: 'image_generation' | 'web_search' | 'code_execution' | 'file_operations' | 'data_analysis';
|
|
397
|
+
category: 'image_generation' | 'web_search' | 'web_scraping' | 'code_execution' | 'file_operations' | 'data_analysis' | 'knowledge_retrieval' | 'text_to_speech' | 'voice_processing' | 'third_party_api';
|
|
398
398
|
providers: string[];
|
|
399
399
|
parametersSchema: JSONSchema;
|
|
400
400
|
defaultConfig?: JsonObject;
|
package/dist/index.mjs
CHANGED
|
@@ -6572,7 +6572,7 @@ Do NOT redo any of the above work.`
|
|
|
6572
6572
|
"Use write_file only if you want to save the final deliverable into the workspace."
|
|
6573
6573
|
] : ["Always use write_file to save your output so the user can run it immediately."]
|
|
6574
6574
|
].join("\n") : "";
|
|
6575
|
-
const builtinToolNames = builtinToolIds?.map((id) => id.replace(/^builtin:/, ""));
|
|
6575
|
+
const builtinToolNames = builtinToolIds?.map((id) => id.replace(/^(builtin|platform):/, ""));
|
|
6576
6576
|
const builtinToolsBlock = builtinToolNames?.length ? [
|
|
6577
6577
|
"",
|
|
6578
6578
|
"--- Built-in Tools ---",
|