@ai-sdk/deepseek 3.0.0-canary.48 → 3.0.0-canary.50
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 +16 -0
- package/dist/index.js +1 -1
- package/docs/30-deepseek.mdx +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ai-sdk/deepseek
|
|
2
2
|
|
|
3
|
+
## 3.0.0-canary.50
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ee798eb]
|
|
8
|
+
- Updated dependencies [daf6637]
|
|
9
|
+
- @ai-sdk/provider-utils@5.0.0-canary.45
|
|
10
|
+
|
|
11
|
+
## 3.0.0-canary.49
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [6c93e36]
|
|
16
|
+
- Updated dependencies [f617ac2]
|
|
17
|
+
- @ai-sdk/provider-utils@5.0.0-canary.44
|
|
18
|
+
|
|
3
19
|
## 3.0.0-canary.48
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -725,7 +725,7 @@ var DeepSeekChatLanguageModel = class _DeepSeekChatLanguageModel {
|
|
|
725
725
|
};
|
|
726
726
|
|
|
727
727
|
// src/version.ts
|
|
728
|
-
var VERSION = true ? "3.0.0-canary.
|
|
728
|
+
var VERSION = true ? "3.0.0-canary.50" : "0.0.0-test";
|
|
729
729
|
|
|
730
730
|
// src/deepseek-provider.ts
|
|
731
731
|
function createDeepSeek(options = {}) {
|
package/docs/30-deepseek.mdx
CHANGED
|
@@ -139,7 +139,7 @@ const result = streamText({
|
|
|
139
139
|
prompt: 'How many "r"s are in the word "strawberry"?',
|
|
140
140
|
});
|
|
141
141
|
|
|
142
|
-
for await (const part of result.
|
|
142
|
+
for await (const part of result.stream) {
|
|
143
143
|
if (part.type === 'reasoning') {
|
|
144
144
|
// This is the reasoning text
|
|
145
145
|
console.log('Reasoning:', part.text);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/deepseek",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.50",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ai-sdk/provider": "4.0.0-canary.17",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.0-canary.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.0-canary.45"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|