symposium 0.14.1 → 0.14.2

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 +1 -1
  2. package/package.json +3 -3
package/Symposium.js CHANGED
@@ -102,7 +102,7 @@ export default class Symposium {
102
102
  break;
103
103
 
104
104
  case 'base64':
105
- file = new File([Buffer.from(audio.data, 'base64')], 'audio.' + this.getExtFromMime(audio.type), {type: audio.type});
105
+ file = new File([Buffer.from(audio.data, 'base64')], 'audio.' + this.getExtFromMime(audio.mime), {type: audio.mime});
106
106
  break;
107
107
  }
108
108
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.14.1",
4
+ "version": "0.14.2",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",
8
8
  "license": "ISC",
9
9
  "dependencies": {
10
- "@anthropic-ai/sdk": "^0.54.0",
11
- "groq-sdk": "^0.25.0",
10
+ "@anthropic-ai/sdk": "^0.55.0",
11
+ "groq-sdk": "^0.26.0",
12
12
  "openai": "^5.0.0",
13
13
  "tiktoken": "^1.0.10"
14
14
  }