symposium 1.2.5 → 1.2.6

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,8 @@ export default class AnthropicModel extends Model {
78
78
  case 'thinking':
79
79
  message_content.push({
80
80
  type: 'reasoning',
81
- content: message.original,
81
+ content: m.thinking,
82
+ original: m,
82
83
  });
83
84
  break;
84
85
 
@@ -172,11 +173,7 @@ export default class AnthropicModel extends Model {
172
173
  break;
173
174
 
174
175
  case 'reasoning':
175
- content.push({
176
- type: 'thinking',
177
- content: c.thinking,
178
- original: c,
179
- });
176
+ content.push(c.original);
180
177
  break;
181
178
 
182
179
  default:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "1.2.5",
4
+ "version": "1.2.6",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",