symposium 0.6.5 → 0.6.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.
@@ -117,8 +117,11 @@ export default class AnthropicModel extends Model {
117
117
  case 'base64':
118
118
  return {
119
119
  type: 'image',
120
- media_type: c.content.mime,
121
- data: c.content.data,
120
+ source: {
121
+ type: 'base64',
122
+ media_type: c.content.mime,
123
+ data: c.content.data,
124
+ },
122
125
  };
123
126
 
124
127
  // TODO: url
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.6.5",
4
+ "version": "0.6.6",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",