symposium 0.14.16 → 0.14.17

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.
package/Agent.js CHANGED
@@ -90,7 +90,7 @@ export default class Agent {
90
90
  }
91
91
 
92
92
  const model = Symposium.getModelByName(thread.state.model);
93
- if (!model.supports_audio) {
93
+ if (!model.supports_audio && typeof content !== 'string') {
94
94
  for (let c of content) {
95
95
  if (c.type === 'audio' && !c.content?.transcription) {
96
96
  const words = await this.getPromptWordsForTranscription(thread);
package/models/Gpt5.js CHANGED
@@ -4,4 +4,5 @@ export default class Gpt5 extends OpenAIModel {
4
4
  name = 'gpt-5';
5
5
  label = 'gpt-5';
6
6
  tokens = 400000;
7
+ supports_structured_output = true;
7
8
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.14.16",
4
+ "version": "0.14.17",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",