@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.mjs
CHANGED
|
@@ -6334,7 +6334,9 @@ Fixed SQL query:`;
|
|
|
6334
6334
|
let executedToolsText = "No external tools were executed for data fetching.";
|
|
6335
6335
|
if (executedTools && executedTools.length > 0) {
|
|
6336
6336
|
logger.info(`[${this.getProviderName()}] Passing ${executedTools.length} executed tools to component matching`);
|
|
6337
|
-
executedToolsText = "The following external tools were executed to fetch data.\n**IMPORTANT: For components displaying this data, use externalTool prop instead of query.**\n
|
|
6337
|
+
executedToolsText = "The following external tools were executed to fetch data.\n" + // '**IMPORTANT: For components displaying this data, use externalTool prop instead of query.**\n' +
|
|
6338
|
+
// '**IMPORTANT: Use ONLY the field names listed in outputSchema for config keys.**\n\n' +
|
|
6339
|
+
executedTools.map((tool, idx) => {
|
|
6338
6340
|
let outputSchemaText = "Not available";
|
|
6339
6341
|
let fieldNamesList = "";
|
|
6340
6342
|
let recordCount = "unknown";
|