@mcp-abap-adt/llm-agent-libs 21.0.0 → 22.0.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/README.md +4 -1
- package/package.json +15 -15
- /package/{COPYING → GPL-3.0.txt} +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @mcp-abap-adt/llm-agent-libs
|
|
2
2
|
|
|
3
|
+
[](https://stand-with-ukraine.pp.ua)
|
|
4
|
+
[](https://www.gnu.org/licenses/lgpl-3.0)
|
|
5
|
+
|
|
3
6
|
Core SmartAgent composition runtime. Builder, agent runtime, pipeline, sessions, history, resilience, observability, plugins, skills.
|
|
4
7
|
|
|
5
8
|
## Top-level exports
|
|
@@ -48,7 +51,7 @@ See `docs/ARCHITECTURE.md` for the full SmartAgent package layout.
|
|
|
48
51
|
## License
|
|
49
52
|
|
|
50
53
|
**GNU Lesser General Public License v3.0 only** (`LGPL-3.0-only`) — see
|
|
51
|
-
[`LICENSE`](LICENSE) (LGPL) and [`
|
|
54
|
+
[`LICENSE`](LICENSE) (LGPL) and [`GPL-3.0.txt`](GPL-3.0.txt) (the GPL it layers
|
|
52
55
|
permissions onto; both are required, the LGPL is not standalone).
|
|
53
56
|
|
|
54
57
|
Copyright © 2025–2026 Oleksii Kyslytsia
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-abap-adt/llm-agent-libs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist",
|
|
26
26
|
"README.md",
|
|
27
27
|
"LICENSE",
|
|
28
|
-
"
|
|
28
|
+
"GPL-3.0.txt"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsc -p tsconfig.json",
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"test": "node --import tsx/esm --test --test-reporter=spec 'src/**/*.test.ts'"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@mcp-abap-adt/llm-agent": "^
|
|
37
|
-
"@mcp-abap-adt/llm-agent-mcp": "^
|
|
38
|
-
"@mcp-abap-adt/llm-agent-rag": "^
|
|
36
|
+
"@mcp-abap-adt/llm-agent": "^22.0.0",
|
|
37
|
+
"@mcp-abap-adt/llm-agent-mcp": "^22.0.0",
|
|
38
|
+
"@mcp-abap-adt/llm-agent-rag": "^22.0.0",
|
|
39
39
|
"@opentelemetry/api": "^1.9.1",
|
|
40
40
|
"dotenv": "^17.3.1",
|
|
41
41
|
"yaml": "^2.9.0",
|
|
42
42
|
"zod": "^4.4.3"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@mcp-abap-adt/anthropic-llm": "^
|
|
46
|
-
"@mcp-abap-adt/deepseek-llm": "^
|
|
47
|
-
"@mcp-abap-adt/ollama-llm": "^
|
|
48
|
-
"@mcp-abap-adt/openai-llm": "^
|
|
49
|
-
"@mcp-abap-adt/sap-aicore-llm": "^
|
|
45
|
+
"@mcp-abap-adt/anthropic-llm": "^22.0.0",
|
|
46
|
+
"@mcp-abap-adt/deepseek-llm": "^22.0.0",
|
|
47
|
+
"@mcp-abap-adt/ollama-llm": "^22.0.0",
|
|
48
|
+
"@mcp-abap-adt/openai-llm": "^22.0.0",
|
|
49
|
+
"@mcp-abap-adt/sap-aicore-llm": "^22.0.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
52
52
|
"@mcp-abap-adt/openai-llm": {
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@mcp-abap-adt/anthropic-llm": "^
|
|
70
|
-
"@mcp-abap-adt/deepseek-llm": "^
|
|
71
|
-
"@mcp-abap-adt/ollama-llm": "^
|
|
72
|
-
"@mcp-abap-adt/openai-llm": "^
|
|
73
|
-
"@mcp-abap-adt/sap-aicore-llm": "^
|
|
69
|
+
"@mcp-abap-adt/anthropic-llm": "^22.0.0",
|
|
70
|
+
"@mcp-abap-adt/deepseek-llm": "^22.0.0",
|
|
71
|
+
"@mcp-abap-adt/ollama-llm": "^22.0.0",
|
|
72
|
+
"@mcp-abap-adt/openai-llm": "^22.0.0",
|
|
73
|
+
"@mcp-abap-adt/sap-aicore-llm": "^22.0.0"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
/package/{COPYING → GPL-3.0.txt}
RENAMED
|
File without changes
|