symposium 0.8.5 → 0.8.6

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 +2 -0
  2. package/package.json +1 -1
package/Symposium.js CHANGED
@@ -9,6 +9,7 @@ import Claude3Sonnet from "./models/Claude3Sonnet.js";
9
9
  import Claude3Opus from "./models/Claude3Opus.js";
10
10
  import Claude35Sonnet from "./models/Claude35Sonnet.js";
11
11
  import Llama3Reasoning from "./models/Llama3Reasoning.js";
12
+ import Llama3Versatile from "./models/Llama3Versatile.js";
12
13
  import Mixtral8 from "./models/Mixtral8.js";
13
14
 
14
15
  export default class Symposium {
@@ -28,6 +29,7 @@ export default class Symposium {
28
29
  this.loadModel(new Claude35Sonnet());
29
30
 
30
31
  this.loadModel(new Llama3Reasoning());
32
+ this.loadModel(new Llama3Versatile());
31
33
  this.loadModel(new Mixtral8());
32
34
 
33
35
  return Redis.init();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.8.5",
4
+ "version": "0.8.6",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",