@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.mjs CHANGED
@@ -7028,7 +7028,7 @@ Analyze the error and try again with a corrected query.`;
7028
7028
  async buildPrompt(intent, aggregation) {
7029
7029
  const sourceName = this.tool.name;
7030
7030
  const sourceType = this.extractSourceType();
7031
- const fullSchema = this.tool.description || "No schema available";
7031
+ const fullSchema = this.tool.fullSchema || this.tool.description || "No schema available";
7032
7032
  const prompts = await promptLoader.loadPrompts("agent-source-query", {
7033
7033
  SOURCE_NAME: sourceName,
7034
7034
  SOURCE_TYPE: sourceType,
@@ -9912,6 +9912,7 @@ var get_agent_user_response = async (prompt, components, anthropicApiKey, groqAp
9912
9912
  id: t.id,
9913
9913
  name: t.name,
9914
9914
  description: t.description,
9915
+ fullSchema: t.fullSchema,
9915
9916
  fn: t.fn,
9916
9917
  limit: t.limit,
9917
9918
  outputSchema: t.outputSchema,