symposium 0.14.16 → 0.14.18
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 +1 -1
- package/Symposium.js +2 -0
- package/models/Gpt5.js +1 -0
- package/models/Gpt5Mini.js +8 -0
- package/package.json +1 -1
package/Agent.js
CHANGED
|
@@ -90,7 +90,7 @@ export default class Agent {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
const model = Symposium.getModelByName(thread.state.model);
|
|
93
|
-
if (!model.supports_audio) {
|
|
93
|
+
if (!model.supports_audio && typeof content !== 'string') {
|
|
94
94
|
for (let c of content) {
|
|
95
95
|
if (c.type === 'audio' && !c.content?.transcription) {
|
|
96
96
|
const words = await this.getPromptWordsForTranscription(thread);
|
package/Symposium.js
CHANGED
|
@@ -7,6 +7,7 @@ import Gpt4O from "./models/Gpt4O.js";
|
|
|
7
7
|
import GptO1 from "./models/GptO1.js";
|
|
8
8
|
import GptO1Mini from "./models/GptO1Mini.js";
|
|
9
9
|
import Gpt5 from "./models/Gpt5.js";
|
|
10
|
+
import Gpt5Mini from "./models/Gpt5Mini.js";
|
|
10
11
|
import Whisper from "./models/Whisper.js";
|
|
11
12
|
import Claude35Sonnet from "./models/Claude35Sonnet.js";
|
|
12
13
|
import Claude37Sonnet from "./models/Claude37Sonnet.js";
|
|
@@ -38,6 +39,7 @@ export default class Symposium {
|
|
|
38
39
|
this.loadModel(new GptO1Mini());
|
|
39
40
|
this.loadModel(new Whisper());
|
|
40
41
|
this.loadModel(new Gpt5());
|
|
42
|
+
this.loadModel(new Gpt5Mini());
|
|
41
43
|
|
|
42
44
|
this.loadModel(new Claude35Sonnet());
|
|
43
45
|
this.loadModel(new Claude37Sonnet());
|
package/models/Gpt5.js
CHANGED