smoltalk 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.
@@ -66,7 +66,7 @@ export class ToolMessage extends BaseMessage {
66
66
  // do nothing, it's already a string
67
67
  }
68
68
  else {
69
- getLogger().warn("ToolMessage content is neither a string nor an array of TextParts. Converting to string using JSON.stringify.");
69
+ getLogger().debug("ToolMessage content is neither a string nor an array of TextParts. Converting to string using JSON.stringify.");
70
70
  result.data.content = JSON.stringify(result.data.content);
71
71
  }
72
72
  return new ToolMessage(result.data.content, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoltalk",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "description": "A common interface for LLM APIs",
5
5
  "homepage": "https://github.com/egonSchiele/smoltalk",
6
6
  "scripts": {