From bdbd3ce5566c3b750eafc8f5f8adf3d97e9dd59a Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Thu, 27 Nov 2025 10:43:23 +0200 Subject: [PATCH] cl --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 894215c2..55309829 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog ## [Unreleased] +### Changed + +- **Async Converters**: Made document converters fully async + - `BaseConverter.convert_file()` and `convert_text()` are now async methods + - `DoclingLocalConverter` wraps blocking Docling operations with `asyncio.to_thread()` + - `DoclingServeConverter` now uses `httpx.AsyncClient` instead of sync `requests` +- **Async Model Prefetch**: `prefetch_models()` is now async + - Uses `httpx.AsyncClient` for Ollama model pulls + - Wraps blocking Docling and HuggingFace downloads with `asyncio.to_thread()` + ## [0.19.1] - 2025-11-26 ### Added