@aigne/anthropic 0.10.10 → 0.10.12
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 +22 -0
- package/README.md +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.12](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.10.11...anthropic-v0.10.12) (2025-08-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/core bumped to 1.47.0
|
|
11
|
+
* devDependencies
|
|
12
|
+
* @aigne/test-utils bumped to 0.5.24
|
|
13
|
+
|
|
14
|
+
## [0.10.11](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.10.10...anthropic-v0.10.11) (2025-08-08)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* The following workspace dependencies were updated
|
|
20
|
+
* dependencies
|
|
21
|
+
* @aigne/core bumped to 1.46.1
|
|
22
|
+
* devDependencies
|
|
23
|
+
* @aigne/test-utils bumped to 0.5.23
|
|
24
|
+
|
|
3
25
|
## [0.10.10](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.10.9...anthropic-v0.10.10) (2025-08-06)
|
|
4
26
|
|
|
5
27
|
|
package/README.md
CHANGED
|
@@ -20,6 +20,12 @@ AIGNE Anthropic SDK for integrating with Claude AI models within the [AIGNE Fram
|
|
|
20
20
|
|
|
21
21
|
`@aigne/anthropic` provides a seamless integration between the AIGNE Framework and Anthropic's Claude language models and API. This package enables developers to easily leverage Anthropic's Claude models in their AIGNE applications, providing a consistent interface across the framework while taking advantage of Claude's advanced AI capabilities.
|
|
22
22
|
|
|
23
|
+
<picture>
|
|
24
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-anthropic-dark.png" media="(prefers-color-scheme: dark)">
|
|
25
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-anthropic.png" media="(prefers-color-scheme: light)">
|
|
26
|
+
<img src="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/aigne-anthropic.png" alt="AIGNE Arch" />
|
|
27
|
+
</picture>
|
|
28
|
+
|
|
23
29
|
## Features
|
|
24
30
|
|
|
25
31
|
* **Anthropic API Integration**: Direct connection to Anthropic's API services using the official SDK
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/anthropic",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12",
|
|
4
4
|
"description": "AIGNE Anthropic SDK for integrating with Claude AI models",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@anthropic-ai/sdk": "^0.56.0",
|
|
39
39
|
"ajv": "^8.17.1",
|
|
40
40
|
"zod": "^3.25.67",
|
|
41
|
-
"@aigne/core": "^1.
|
|
41
|
+
"@aigne/core": "^1.47.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/bun": "^1.2.18",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"npm-run-all": "^4.1.5",
|
|
47
47
|
"rimraf": "^6.0.1",
|
|
48
48
|
"typescript": "^5.8.3",
|
|
49
|
-
"@aigne/test-utils": "^0.5.
|
|
49
|
+
"@aigne/test-utils": "^0.5.24"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"lint": "tsc --noEmit",
|