@superatomai/sdk-node 0.0.66 → 0.0.67
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6385,7 +6385,9 @@ Fixed SQL query:`;
|
|
|
6385
6385
|
let executedToolsText = "No external tools were executed for data fetching.";
|
|
6386
6386
|
if (executedTools && executedTools.length > 0) {
|
|
6387
6387
|
logger.info(`[${this.getProviderName()}] Passing ${executedTools.length} executed tools to component matching`);
|
|
6388
|
-
executedToolsText = "The following external tools were executed to fetch data.\n**IMPORTANT: For components displaying this data, use externalTool prop instead of query.**\n
|
|
6388
|
+
executedToolsText = "The following external tools were executed to fetch data.\n" + // '**IMPORTANT: For components displaying this data, use externalTool prop instead of query.**\n' +
|
|
6389
|
+
// '**IMPORTANT: Use ONLY the field names listed in outputSchema for config keys.**\n\n' +
|
|
6390
|
+
executedTools.map((tool, idx) => {
|
|
6389
6391
|
let outputSchemaText = "Not available";
|
|
6390
6392
|
let fieldNamesList = "";
|
|
6391
6393
|
let recordCount = "unknown";
|