symposium 0.14.11 → 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.
package/Symposium.js
CHANGED
|
@@ -6,6 +6,7 @@ import Gpt4Turbo from "./models/Gpt4Turbo.js";
|
|
|
6
6
|
import Gpt4O from "./models/Gpt4O.js";
|
|
7
7
|
import GptO1 from "./models/GptO1.js";
|
|
8
8
|
import GptO1Mini from "./models/GptO1Mini.js";
|
|
9
|
+
import Gpt5 from "./models/Gpt5.js";
|
|
9
10
|
import Whisper from "./models/Whisper.js";
|
|
10
11
|
import Claude35Sonnet from "./models/Claude35Sonnet.js";
|
|
11
12
|
import Claude37Sonnet from "./models/Claude37Sonnet.js";
|
|
@@ -15,6 +16,7 @@ import Llama3 from "./models/Llama3.js";
|
|
|
15
16
|
import Mixtral8 from "./models/Mixtral8.js";
|
|
16
17
|
import DeepSeekChat from "./models/DeepSeekChat.js";
|
|
17
18
|
import DeepSeekReasoner from "./models/DeepSeekReasoner.js";
|
|
19
|
+
import Grok4 from "./models/Grok4.js";
|
|
18
20
|
|
|
19
21
|
export default class Symposium {
|
|
20
22
|
static models = new Map();
|
|
@@ -35,6 +37,7 @@ export default class Symposium {
|
|
|
35
37
|
this.loadModel(new GptO1());
|
|
36
38
|
this.loadModel(new GptO1Mini());
|
|
37
39
|
this.loadModel(new Whisper());
|
|
40
|
+
this.loadModel(new Gpt5());
|
|
38
41
|
|
|
39
42
|
this.loadModel(new Claude35Sonnet());
|
|
40
43
|
this.loadModel(new Claude37Sonnet());
|
|
@@ -47,6 +50,8 @@ export default class Symposium {
|
|
|
47
50
|
this.loadModel(new DeepSeekChat());
|
|
48
51
|
this.loadModel(new DeepSeekReasoner());
|
|
49
52
|
|
|
53
|
+
this.loadModel(new Grok4());
|
|
54
|
+
|
|
50
55
|
this.storage = storage;
|
|
51
56
|
await this.storage.init();
|
|
52
57
|
}
|
package/package.json
CHANGED
|
File without changes
|