llm-stream-assemble 1.5.6 → 1.5.7

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.
Files changed (2) hide show
  1. package/README.md +15 -4
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # llm-stream-assemble
2
2
 
3
- ![core](https://img.shields.io/badge/core-1.5.6-blue)
3
+ ![core](https://img.shields.io/badge/core-1.5.7-blue)
4
4
  ![node](https://img.shields.io/badge/node-%3E%3D18-339933)
5
5
  ![runtime deps](https://img.shields.io/badge/runtime_deps-0-brightgreen)
6
- ![tests](https://img.shields.io/badge/tests-1555_passing-brightgreen)
6
+ ![tests](https://img.shields.io/badge/tests-1637_passing-brightgreen)
7
7
  [![ci](https://github.com/01laky/llm-stream-assemble/actions/workflows/ci.yml/badge.svg)](https://github.com/01laky/llm-stream-assemble/actions/workflows/ci.yml)
8
- ![status](https://img.shields.io/badge/status-stable_1.5.6-brightgreen)
8
+ ![status](https://img.shields.io/badge/status-stable_1.5.7-brightgreen)
9
9
 
10
10
  **One typed event model for every LLM stream** — text, tool calls, reasoning, JSON, usage, refusals, errors, and non-streaming responses.
11
11
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  Turn provider SSE fragments into typed events — **not another `+=` loop**.
15
15
 
16
- **Status:** Stable `1.5.6`. Seven built-in adapters (Gemini covers **Google AI** and **Vertex AI** via `apiSurface`), thirteen OpenAI-compatible host presets (including **Azure OpenAI** and **Cloudflare Workers AI**), transforms, replay helpers, and examples are production-ready. Pin semver ranges as usual and review [CHANGELOG.md](./CHANGELOG.md) before major upgrades.
16
+ **Status:** Stable `1.5.7`. Seven built-in adapters (Gemini covers **Google AI** and **Vertex AI** via `apiSurface`), thirteen OpenAI-compatible host presets (including **Azure OpenAI** and **Cloudflare Workers AI**), transforms, replay helpers, and examples are production-ready. Pin semver ranges as usual and review [CHANGELOG.md](./CHANGELOG.md) before major upgrades.
17
17
 
18
18
  ---
19
19
 
@@ -161,6 +161,17 @@ pnpm add llm-stream-assemble
161
161
 
162
162
  **Requirements:** Node.js 18+
163
163
 
164
+ ## Runtimes
165
+
166
+ | Runtime | Support | Notes |
167
+ | ---------------------- | ------- | ------------------------------------------------------------------------------------------ |
168
+ | **Node.js 18+** | Primary | CI on LTS 18, 20, 22 — [compatibility matrix](./docs/compatibility.md) |
169
+ | **Bun** | Smoke | `ReadableStream` + npm package import |
170
+ | **Deno** | Smoke | `npm:llm-stream-assemble` specifiers |
171
+ | **Cloudflare Workers** | Smoke | `TransformStream` proxy patterns in [integration cookbook](./docs/integration-cookbook.md) |
172
+
173
+ Full matrix and caveats: [post-1.0 provider roadmap — Runtime support](./docs/post-1.0-provider-roadmap.md#runtime-support-matrix).
174
+
164
175
  ---
165
176
 
166
177
  ## First success in 30 seconds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-stream-assemble",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Composable TypeScript stream assembly for OpenAI, Anthropic, Gemini (Google AI + Vertex AI), AWS Bedrock, Cohere, and OpenAI-compatible LLM APIs — unified StreamEvent model for text, tools, reasoning, JSON, usage, and non-streaming responses.",
5
5
  "license": "MIT",
6
6
  "author": "Ladislav Kostolny <01laky@gmail.com>",
@@ -89,6 +89,7 @@
89
89
  "smoke:cloudflare": "node scripts/live-smoke/cloudflare-workers-ai-compatible.mjs",
90
90
  "smoke:bedrock": "node scripts/live-smoke/bedrock-converse.mjs",
91
91
  "smoke:cohere": "node scripts/live-smoke/cohere-chat.mjs",
92
+ "smoke:gemini": "node scripts/live-smoke/gemini.mjs",
92
93
  "smoke:vertex": "node scripts/live-smoke/vertex-gemini.mjs",
93
94
  "release:prep": "node scripts/release-prep.mjs",
94
95
  "diagrams:build": "node scripts/build-diagrams.mjs",