@aigne/deepseek 0.6.5 → 0.7.0
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 +17 -0
- package/lib/cjs/package.json +3 -1
- package/lib/esm/package.json +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0](https://github.com/AIGNE-io/aigne-framework/compare/deepseek-v0.6.5...deepseek-v0.7.0) (2025-07-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **memory:** support did space memory adapter ([#229](https://github.com/AIGNE-io/aigne-framework/issues/229)) ([6f69b64](https://github.com/AIGNE-io/aigne-framework/commit/6f69b64e98b963db9d6ab5357306b445385eaa68))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/openai bumped to 0.10.0
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @aigne/core bumped to 1.34.0
|
|
18
|
+
* @aigne/test-utils bumped to 0.5.8
|
|
19
|
+
|
|
3
20
|
## [0.6.5](https://github.com/AIGNE-io/aigne-framework/compare/deepseek-v0.6.4...deepseek-v0.6.5) (2025-07-14)
|
|
4
21
|
|
|
5
22
|
|
package/lib/cjs/package.json
CHANGED
package/lib/esm/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/deepseek",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "AIGNE Deepseek SDK for integrating with Deepseek AI models",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@aigne/openai": "^0.
|
|
35
|
+
"@aigne/openai": "^0.10.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/bun": "^1.2.18",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"npm-run-all": "^4.1.5",
|
|
41
41
|
"rimraf": "^6.0.1",
|
|
42
42
|
"typescript": "^5.8.3",
|
|
43
|
-
"@aigne/
|
|
44
|
-
"@aigne/
|
|
43
|
+
"@aigne/core": "^1.34.0",
|
|
44
|
+
"@aigne/test-utils": "^0.5.8"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"lint": "tsc --noEmit",
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"clean": "rimraf lib test/coverage",
|
|
50
50
|
"test": "bun test",
|
|
51
51
|
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
|
|
52
|
-
"postbuild": "
|
|
52
|
+
"postbuild": "node ../../scripts/post-build-lib.mjs"
|
|
53
53
|
}
|
|
54
54
|
}
|