@superatomai/sdk-node 0.0.10-mds → 0.0.11-mds
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.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7085,7 +7085,7 @@ Analyze the error and try again with a corrected query.`;
|
|
|
7085
7085
|
async buildPrompt(intent, aggregation) {
|
|
7086
7086
|
const sourceName = this.tool.name;
|
|
7087
7087
|
const sourceType = this.extractSourceType();
|
|
7088
|
-
const fullSchema = this.tool.description || "No schema available";
|
|
7088
|
+
const fullSchema = this.tool.fullSchema || this.tool.description || "No schema available";
|
|
7089
7089
|
const prompts = await promptLoader.loadPrompts("agent-source-query", {
|
|
7090
7090
|
SOURCE_NAME: sourceName,
|
|
7091
7091
|
SOURCE_TYPE: sourceType,
|
|
@@ -9969,6 +9969,7 @@ var get_agent_user_response = async (prompt, components, anthropicApiKey, groqAp
|
|
|
9969
9969
|
id: t.id,
|
|
9970
9970
|
name: t.name,
|
|
9971
9971
|
description: t.description,
|
|
9972
|
+
fullSchema: t.fullSchema,
|
|
9972
9973
|
fn: t.fn,
|
|
9973
9974
|
limit: t.limit,
|
|
9974
9975
|
outputSchema: t.outputSchema,
|