@ai-sdk/deepseek 2.0.13 → 2.0.14
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 +6 -0
- package/README.md +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,14 @@ The DeepSeek provider is available in the `@ai-sdk/deepseek` module. You can ins
|
|
|
10
10
|
npm i @ai-sdk/deepseek
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Skill for Coding Agents
|
|
14
|
+
|
|
15
|
+
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
npx skills add vercel/ai
|
|
19
|
+
```
|
|
20
|
+
|
|
13
21
|
## Provider Instance
|
|
14
22
|
|
|
15
23
|
You can import the default provider instance `deepseek` from `@ai-sdk/deepseek`:
|
package/dist/index.js
CHANGED
|
@@ -781,7 +781,7 @@ var DeepSeekChatLanguageModel = class {
|
|
|
781
781
|
};
|
|
782
782
|
|
|
783
783
|
// src/version.ts
|
|
784
|
-
var VERSION = true ? "2.0.
|
|
784
|
+
var VERSION = true ? "2.0.14" : "0.0.0-test";
|
|
785
785
|
|
|
786
786
|
// src/deepseek-provider.ts
|
|
787
787
|
function createDeepSeek(options = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -770,7 +770,7 @@ var DeepSeekChatLanguageModel = class {
|
|
|
770
770
|
};
|
|
771
771
|
|
|
772
772
|
// src/version.ts
|
|
773
|
-
var VERSION = true ? "2.0.
|
|
773
|
+
var VERSION = true ? "2.0.14" : "0.0.0-test";
|
|
774
774
|
|
|
775
775
|
// src/deepseek-provider.ts
|
|
776
776
|
function createDeepSeek(options = {}) {
|