symposium 0.1.9 → 0.1.11

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
@@ -105,7 +105,7 @@ class Agent {
105
105
 
106
106
  async getDefaultState() {
107
107
  return {
108
- model: 'gpt-4-1106-preview',
108
+ model: 'gpt-4-turbo-preview',
109
109
  };
110
110
  }
111
111
 
package/Symposium.js CHANGED
@@ -7,9 +7,9 @@ class Symposium {
7
7
  static models = [];
8
8
 
9
9
  static async init() {
10
- this.loadModel(new Model('gpt-3.5-turbo-16k', 'gpt-3.5', 16384));
10
+ this.loadModel(new Model('gpt-3.5-turbo-0125', 'gpt-3.5', 16384));
11
11
  this.loadModel(new Model('gpt-4', 'gpt-4', 8192));
12
- this.loadModel(new Model('gpt-4-1106-preview', 'gpt-4-turbo', 128000, 'gpt-4'));
12
+ this.loadModel(new Model('gpt-4-turbo-preview', 'gpt-4-turbo', 128000, 'gpt-4'));
13
13
 
14
14
  return Redis.init();
15
15
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.1.9",
4
+ "version": "0.1.11",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",