llm-messages 0.4.4 → 0.4.5
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 +8 -0
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres
|
|
5
5
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.4.5] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Aligned npm keywords with the GitHub repository topics for OpenAI-compatible
|
|
12
|
+
provider portability, chat completions, multimodal messages and zero
|
|
13
|
+
dependencies.
|
|
14
|
+
|
|
7
15
|
## [0.4.4] - 2026-06-04
|
|
8
16
|
|
|
9
17
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-messages",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "Convert chat conversations and responses between OpenAI, Anthropic and Gemini. Tool calls, images, audio, documents and roles handled. Zero dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openai",
|
|
@@ -10,17 +10,25 @@
|
|
|
10
10
|
"deepseek",
|
|
11
11
|
"groq",
|
|
12
12
|
"openrouter",
|
|
13
|
+
"openai-compatible",
|
|
13
14
|
"llm",
|
|
14
15
|
"messages",
|
|
15
16
|
"chat",
|
|
17
|
+
"chat-completions",
|
|
16
18
|
"convert",
|
|
17
19
|
"function-calling",
|
|
18
20
|
"tool-use",
|
|
19
21
|
"tool-calls",
|
|
20
22
|
"provider",
|
|
21
23
|
"portability",
|
|
24
|
+
"provider-portability",
|
|
25
|
+
"structured-outputs",
|
|
26
|
+
"multimodal",
|
|
22
27
|
"ai",
|
|
23
|
-
"agents"
|
|
28
|
+
"agents",
|
|
29
|
+
"ai-agents",
|
|
30
|
+
"typescript",
|
|
31
|
+
"zero-dependencies"
|
|
24
32
|
],
|
|
25
33
|
"license": "MIT",
|
|
26
34
|
"author": "Sebastian Legarraga",
|