symposium 0.14.12 → 0.14.13

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/Symposium.js +3 -0
  2. package/package.json +1 -1
package/Symposium.js CHANGED
@@ -37,6 +37,7 @@ export default class Symposium {
37
37
  this.loadModel(new GptO1());
38
38
  this.loadModel(new GptO1Mini());
39
39
  this.loadModel(new Whisper());
40
+ this.loadModel(new Gpt5());
40
41
 
41
42
  this.loadModel(new Claude35Sonnet());
42
43
  this.loadModel(new Claude37Sonnet());
@@ -49,6 +50,8 @@ export default class Symposium {
49
50
  this.loadModel(new DeepSeekChat());
50
51
  this.loadModel(new DeepSeekReasoner());
51
52
 
53
+ this.loadModel(new Grok4());
54
+
52
55
  this.storage = storage;
53
56
  await this.storage.init();
54
57
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.14.12",
4
+ "version": "0.14.13",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",