@ai-sdk/cohere 3.0.25 → 3.0.27
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/CHANGELOG.md +15 -0
- package/dist/index.js +4 -4
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @ai-sdk/cohere
|
|
2
2
|
|
|
3
|
+
## 3.0.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 055cd68: fix: publish v6 to latest npm dist tag
|
|
8
|
+
- Updated dependencies [055cd68]
|
|
9
|
+
- @ai-sdk/provider-utils@4.0.21
|
|
10
|
+
|
|
11
|
+
## 3.0.26
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [64ac0fd]
|
|
16
|
+
- @ai-sdk/provider-utils@4.0.20
|
|
17
|
+
|
|
3
18
|
## 3.0.25
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -18,13 +18,13 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
|
-
var
|
|
22
|
-
__export(
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
23
|
VERSION: () => VERSION,
|
|
24
24
|
cohere: () => cohere,
|
|
25
25
|
createCohere: () => createCohere
|
|
26
26
|
});
|
|
27
|
-
module.exports = __toCommonJS(
|
|
27
|
+
module.exports = __toCommonJS(index_exports);
|
|
28
28
|
|
|
29
29
|
// src/cohere-provider.ts
|
|
30
30
|
var import_provider4 = require("@ai-sdk/provider");
|
|
@@ -997,7 +997,7 @@ var CohereRerankingModel = class {
|
|
|
997
997
|
};
|
|
998
998
|
|
|
999
999
|
// src/version.ts
|
|
1000
|
-
var VERSION = true ? "3.0.
|
|
1000
|
+
var VERSION = true ? "3.0.27" : "0.0.0-test";
|
|
1001
1001
|
|
|
1002
1002
|
// src/cohere-provider.ts
|
|
1003
1003
|
function createCohere(options = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -998,7 +998,7 @@ var CohereRerankingModel = class {
|
|
|
998
998
|
};
|
|
999
999
|
|
|
1000
1000
|
// src/version.ts
|
|
1001
|
-
var VERSION = true ? "3.0.
|
|
1001
|
+
var VERSION = true ? "3.0.27" : "0.0.0-test";
|
|
1002
1002
|
|
|
1003
1003
|
// src/cohere-provider.ts
|
|
1004
1004
|
function createCohere(options = {}) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/cohere",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.27",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ai-sdk/provider": "3.0.8",
|
|
33
|
-
"@ai-sdk/provider-utils": "4.0.
|
|
33
|
+
"@ai-sdk/provider-utils": "4.0.21"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "20.17.24",
|