@aigne/deepseek 0.7.62-beta.23 → 0.7.62-beta.25
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 +39 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.62-beta.25](https://github.com/AIGNE-io/aigne-framework/compare/deepseek-v0.7.62-beta.24...deepseek-v0.7.62-beta.25) (2026-01-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add prompt caching for OpenAI/Gemini/Anthropic and cache token display ([#838](https://github.com/AIGNE-io/aigne-framework/issues/838)) ([46c628f](https://github.com/AIGNE-io/aigne-framework/commit/46c628f180572ea1b955d1a9888aad6145204842))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* bump version ([696560f](https://github.com/AIGNE-io/aigne-framework/commit/696560fa2673eddcb4d00ac0523fbbbde7273cb3))
|
|
14
|
+
* bump version ([70d217c](https://github.com/AIGNE-io/aigne-framework/commit/70d217c8360dd0dda7f5f17011c4e92ec836e801))
|
|
15
|
+
* bump version ([af04b69](https://github.com/AIGNE-io/aigne-framework/commit/af04b6931951afa35d52065430acc7fef4b10087))
|
|
16
|
+
* bump version ([ba7ad18](https://github.com/AIGNE-io/aigne-framework/commit/ba7ad184fcf32b49bf0507a3cb638d20fb00690d))
|
|
17
|
+
* bump version ([93a1c10](https://github.com/AIGNE-io/aigne-framework/commit/93a1c10cf35f88eaafe91092481f5d087bd5b3a9))
|
|
18
|
+
* improve test coverage tracking and reporting ([#903](https://github.com/AIGNE-io/aigne-framework/issues/903)) ([031144e](https://github.com/AIGNE-io/aigne-framework/commit/031144e74f29e882cffe52ffda8f7a18c76ace7f))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* The following workspace dependencies were updated
|
|
24
|
+
* dependencies
|
|
25
|
+
* @aigne/openai bumped to 0.16.16-beta.25
|
|
26
|
+
* devDependencies
|
|
27
|
+
* @aigne/core bumped to 1.72.0-beta.25
|
|
28
|
+
* @aigne/test-utils bumped to 0.5.69-beta.25
|
|
29
|
+
|
|
30
|
+
## [0.7.62-beta.24](https://github.com/AIGNE-io/aigne-framework/compare/deepseek-v0.7.62-beta.23...deepseek-v0.7.62-beta.24) (2026-01-16)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Dependencies
|
|
34
|
+
|
|
35
|
+
* The following workspace dependencies were updated
|
|
36
|
+
* dependencies
|
|
37
|
+
* @aigne/openai bumped to 0.16.16-beta.24
|
|
38
|
+
* devDependencies
|
|
39
|
+
* @aigne/core bumped to 1.72.0-beta.24
|
|
40
|
+
* @aigne/test-utils bumped to 0.5.69-beta.24
|
|
41
|
+
|
|
3
42
|
## [0.7.62-beta.23](https://github.com/AIGNE-io/aigne-framework/compare/deepseek-v0.7.62-beta.22...deepseek-v0.7.62-beta.23) (2026-01-15)
|
|
4
43
|
|
|
5
44
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/deepseek",
|
|
3
|
-
"version": "0.7.62-beta.
|
|
3
|
+
"version": "0.7.62-beta.25",
|
|
4
4
|
"description": "AIGNE Deepseek SDK for integrating with Deepseek AI models",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@aigne/openai": "^0.16.16-beta.
|
|
38
|
+
"@aigne/openai": "^0.16.16-beta.25"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "^1.2.22",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"npm-run-all": "^4.1.5",
|
|
44
44
|
"rimraf": "^6.0.1",
|
|
45
45
|
"typescript": "^5.9.2",
|
|
46
|
-
"@aigne/core": "^1.72.0-beta.
|
|
47
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
46
|
+
"@aigne/core": "^1.72.0-beta.25",
|
|
47
|
+
"@aigne/test-utils": "^0.5.69-beta.25"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"lint": "tsc --noEmit",
|