llm-messages 0.4.0 → 0.4.2
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 +14 -0
- package/README.md +1 -0
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ 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.2] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Published README package-status badges, download visibility and release notes
|
|
12
|
+
to the npm package page.
|
|
13
|
+
|
|
14
|
+
## [0.4.1] - 2026-06-03
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Added OpenAI-compatible provider keywords for DeepSeek, Groq and OpenRouter
|
|
19
|
+
discovery in npm and package metadata.
|
|
20
|
+
|
|
7
21
|
## [0.4.0] - 2026-06-01
|
|
8
22
|
|
|
9
23
|
### Added
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# llm-messages
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/llm-messages)
|
|
4
|
+
[](https://www.npmjs.com/package/llm-messages)
|
|
4
5
|
[](https://github.com/slegarraga/llm-messages/actions/workflows/ci.yml)
|
|
5
6
|
[](./LICENSE)
|
|
6
7
|
[](./package.json)
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-messages",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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",
|
|
7
7
|
"anthropic",
|
|
8
8
|
"claude",
|
|
9
9
|
"gemini",
|
|
10
|
+
"deepseek",
|
|
11
|
+
"groq",
|
|
12
|
+
"openrouter",
|
|
10
13
|
"llm",
|
|
11
14
|
"messages",
|
|
12
15
|
"chat",
|