@mcp-abap-adt/deepseek-llm 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 CHANGED
@@ -1,5 +1,8 @@
1
1
  # @mcp-abap-adt/deepseek-llm
2
2
 
3
+ [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
4
+ [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
5
+
3
6
  DeepSeek LLM provider for @mcp-abap-adt/llm-agent / @mcp-abap-adt/llm-agent-libs.
4
7
 
5
8
  Extends `OpenAIProvider` from `@mcp-abap-adt/openai-llm`. Calls DeepSeek /v1/chat/completions API (OpenAI-compatible).
@@ -13,7 +16,7 @@ Optional peer dependency of @mcp-abap-adt/llm-agent-libs. Install when smart-ser
13
16
  ## License
14
17
 
15
18
  **GNU Lesser General Public License v3.0 only** (`LGPL-3.0-only`) — see
16
- [`LICENSE`](LICENSE) (LGPL) and [`COPYING`](COPYING) (the GPL it layers
19
+ [`LICENSE`](LICENSE) (LGPL) and [`GPL-3.0.txt`](GPL-3.0.txt) (the GPL it layers
17
20
  permissions onto; both are required, the LGPL is not standalone).
18
21
 
19
22
  Copyright © 2025–2026 Oleksii Kyslytsia
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/deepseek-llm",
3
- "version": "21.0.0",
3
+ "version": "22.0.0",
4
4
  "description": "DeepSeek LLM provider (ILlm, extends OpenAIProvider) for @mcp-abap-adt/llm-agent.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,7 +16,7 @@
16
16
  "dist",
17
17
  "README.md",
18
18
  "LICENSE",
19
- "COPYING"
19
+ "GPL-3.0.txt"
20
20
  ],
21
21
  "scripts": {
22
22
  "build": "tsc -p tsconfig.json",
@@ -24,8 +24,8 @@
24
24
  "test": "node --import tsx/esm --test --test-reporter=spec 'src/**/*.test.ts'"
25
25
  },
26
26
  "dependencies": {
27
- "@mcp-abap-adt/llm-agent": "^21.0.0",
28
- "@mcp-abap-adt/openai-llm": "^21.0.0"
27
+ "@mcp-abap-adt/llm-agent": "^22.0.0",
28
+ "@mcp-abap-adt/openai-llm": "^22.0.0"
29
29
  },
30
30
  "license": "LGPL-3.0-only",
31
31
  "repository": {
File without changes