symposium 2.2.2 → 2.2.3

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.
Files changed (2) hide show
  1. package/Agent.js +5 -1
  2. package/package.json +1 -1
package/Agent.js CHANGED
@@ -410,7 +410,11 @@ export default class Agent {
410
410
  return {type: 'response', value: this.afterHandle(thread, completion, JSON.parse(m.content))};
411
411
  }
412
412
 
413
- emitter.emit('output', m.content);
413
+ emitter.emit('output', m);
414
+ break;
415
+
416
+ case 'image':
417
+ emitter.emit('output', m);
414
418
  break;
415
419
 
416
420
  case 'function':
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "2.2.2",
4
+ "version": "2.2.3",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",