symposium 1.2.4 → 1.2.5

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.
@@ -78,7 +78,7 @@ export default class AnthropicModel extends Model {
78
78
  case 'thinking':
79
79
  message_content.push({
80
80
  type: 'reasoning',
81
- content: message,
81
+ content: message.original,
82
82
  });
83
83
  break;
84
84
 
@@ -173,8 +173,9 @@ export default class AnthropicModel extends Model {
173
173
 
174
174
  case 'reasoning':
175
175
  content.push({
176
- ...c,
177
176
  type: 'thinking',
177
+ content: c.thinking,
178
+ original: c,
178
179
  });
179
180
  break;
180
181
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "1.2.4",
4
+ "version": "1.2.5",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",
8
8
  "license": "ISC",
9
9
  "dependencies": {
10
- "@anthropic-ai/sdk": "^0.64.0",
11
- "groq-sdk": "^0.32.0",
12
- "openai": "^5.0.0",
10
+ "@anthropic-ai/sdk": "^0.65.0",
11
+ "groq-sdk": "^0.33.0",
12
+ "openai": "^6.0.0",
13
13
  "tiktoken": "^1.0.10",
14
14
  "uuid": "^13.0.0"
15
15
  }