symposium 0.6.3 → 0.6.4

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.
@@ -108,7 +108,7 @@ export default class AnthropicModel extends Model {
108
108
  case 'function_response':
109
109
  return {
110
110
  type: 'tool_result',
111
- content: c.content.response,
111
+ content: JSON.stringify(c.content.response),
112
112
  tool_use_id: c.content.id,
113
113
  };
114
114
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.6.3",
4
+ "version": "0.6.4",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",