@artemiskit/cli 0.3.0 → 0.3.1
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 +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @artemiskit/cli
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 29e29d6: Fix npm install error caused by unresolved workspace:\* dependencies
|
|
8
|
+
|
|
9
|
+
The published package contained workspace:\* protocol references for @artemiskit/adapter-deepagents and @artemiskit/adapter-langchain, which npm doesn't support. These are now properly resolved to version numbers during publish.
|
|
10
|
+
|
|
11
|
+
Fix npm install error caused by unresolved workspace:\* dependencies
|
|
12
|
+
|
|
13
|
+
The published package contained workspace:\* protocol references for @artemiskit/adapter-deepagents and @artemiskit/adapter-langchain, which npm doesn't support. These are now properly resolved to version numbers during publish.
|
|
14
|
+
|
|
3
15
|
## 0.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artemiskit/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Command-line interface for ArtemisKit LLM evaluation toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"test": "bun test"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@artemiskit/adapter-deepagents": "
|
|
49
|
-
"@artemiskit/adapter-langchain": "
|
|
48
|
+
"@artemiskit/adapter-deepagents": "0.2.0",
|
|
49
|
+
"@artemiskit/adapter-langchain": "0.2.0",
|
|
50
50
|
"@artemiskit/adapter-openai": "0.1.12",
|
|
51
51
|
"@artemiskit/adapter-vercel-ai": "0.1.12",
|
|
52
52
|
"@artemiskit/core": "0.3.0",
|