symposium 3.0.0 → 3.0.2

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.
@@ -67,6 +67,15 @@ export default class OpenAIModel extends Model {
67
67
  audio: false,
68
68
  image_generation: false,
69
69
  }],
70
+ ['gpt-5.5', {
71
+ name: 'gpt-5.5',
72
+ tiktoken: 'gpt-5',
73
+ tokens: 1000000,
74
+ tools: true,
75
+ structured_output: true,
76
+ audio: false,
77
+ image_generation: false,
78
+ }],
70
79
  ]);
71
80
  }
72
81
 
package/Symposium.js CHANGED
@@ -53,6 +53,8 @@ export default class Symposium {
53
53
  }
54
54
 
55
55
  static getModel(name) {
56
+ if (!this.models.has(name))
57
+ throw new Error(`Model with name "${name}" not found`);
56
58
  return this.models.get(name);
57
59
  }
58
60
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "3.0.0",
4
+ "version": "3.0.2",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",