You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [2.13.29] - 2026-05-26
11
+
12
+
### Added
13
+
-**Video generation through Core**: added Python `generate(..., output={"task":"text_to_video"|"image_to_video"})` callback forwarding for AbstractVision progress events, plus OpenAI-compatible `/v1/videos/generations`, `/v1/videos/edits`, and async `/v1/vision/jobs/videos/*` routes.
14
+
-**Video job progress**: async video jobs now capture normalized backend progress events in `progress.last_event` while preserving step/frame counters for polling clients.
15
+
16
+
### Changed
17
+
-**Vision plugin floor**: raised AbstractVision integration requirements to `abstractvision>=0.3.16` so Core installs pick up MLX-Gen 0.18.6, exact model id routing, and text/image-to-video support.
18
+
19
+
### Fixed
20
+
-**Generated media callback boundary**: top-level progress callbacks supplied to multimodal `generate(...)` calls are attached to generated image/video output specs instead of leaking into the text-provider kwargs path.
Copy file name to clipboardExpand all lines: README.md
+41-2Lines changed: 41 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,9 +49,12 @@ First-class support for:
49
49
(**) Optional visual-text compression: render long text/PDFs into images and process them with a vision model to reduce token usage. See [Glyph Visual-Text Compression](docs/glyphs.md) (install `pip install "abstractcore[compression]"`; for PDFs also install `pip install "abstractcore[media]"`).
50
50
51
51
Generative vision uses `abstractvision` when installed. In server mode, omit
52
-
`model` only when the server has a configured image default, or use explicit
52
+
`model` only when the server has a configured default, or use explicit
53
53
provider/model ids such as `diffusers/default`, `diffusers/<huggingface-repo>`,
54
-
`sdcpp/default`, or `openai-compatible/<model>`.
54
+
`mlx-gen/AbstractFramework/qwen-image-2512-4bit`,
55
+
`mlx-gen/Wan-AI/Wan2.2-TI2V-5B-Diffusers`, `sdcpp/default`, or
56
+
`openai-compatible/<model>`. Quantized MLX-Gen models are selected by their
57
+
published repo id; Core does not add a separate quant override.
0 commit comments