llm-messages 0.4.2 → 0.4.3
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 +7 -0
- package/README.md +19 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ 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.3] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Expanded the provider-portability suite section with links to the companion
|
|
12
|
+
packages, offline demo and public portability map.
|
|
13
|
+
|
|
7
14
|
## [0.4.2] - 2026-06-04
|
|
8
15
|
|
|
9
16
|
### Changed
|
package/README.md
CHANGED
|
@@ -171,11 +171,25 @@ Version 0.x covers text, system prompts, tool calls/results, images, audio and
|
|
|
171
171
|
documents, which is the core of every agent loop. Unsupported parts are reported
|
|
172
172
|
via `dropped-content` rather than failing.
|
|
173
173
|
|
|
174
|
-
##
|
|
175
|
-
|
|
176
|
-
`llm-messages`
|
|
177
|
-
|
|
178
|
-
|
|
174
|
+
## Provider portability suite
|
|
175
|
+
|
|
176
|
+
`llm-messages` is the conversation boundary in a small provider-portability
|
|
177
|
+
suite for OpenAI-compatible agent infrastructure:
|
|
178
|
+
|
|
179
|
+
- [`tool-schema`](https://github.com/slegarraga/tool-schema) converts one JSON
|
|
180
|
+
Schema into provider-specific tool/function schemas.
|
|
181
|
+
- [`llm-sse`](https://github.com/slegarraga/llm-sse) parses streaming provider
|
|
182
|
+
responses into unified events.
|
|
183
|
+
- [`llm-errors`](https://github.com/slegarraga/llm-errors) normalizes provider
|
|
184
|
+
errors, retry hints and fallback decisions.
|
|
185
|
+
- [`json-from-llm`](https://github.com/slegarraga/json-from-llm) extracts JSON
|
|
186
|
+
before it enters a tool or message pipeline.
|
|
187
|
+
- [`llm-portability-demo`](https://github.com/slegarraga/llm-portability-demo)
|
|
188
|
+
shows the whole flow offline, with no API key required.
|
|
189
|
+
|
|
190
|
+
Read the
|
|
191
|
+
[provider portability map](https://github.com/slegarraga/llm-portability-demo/blob/main/docs/provider-portability.md)
|
|
192
|
+
for the package roles, OpenAI-compatible hub shape and demo flow.
|
|
179
193
|
|
|
180
194
|
## License
|
|
181
195
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-messages",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
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",
|