Change8

LlamaIndex

AI & LLMs

LlamaIndex is the leading framework for building LLM-powered agents over your data.

Latest: v0.14.2425 releases6 breaking changes15 common errorsView on GitHub

Release History

View all versions →
v0.14.2440 fixes7 features
Aug 19, 2026

This release includes numerous bug fixes across various llama-index components, improving stability and correctness. It also introduces new features such as support for new LLM models and enhanced multimodal capabilities.

v0.14.2312 fixes3 features
Jun 24, 2026

This release introduces significant multimodal capabilities, including synthesis and query engines, alongside numerous bug fixes in core functionality like file I/O encoding and splitter recursion errors. Numerous dependency updates were also applied across various packages.

v0.14.225 fixes2 features
May 14, 2026

This release primarily focuses on dependency updates across numerous packages via mass uv lock upgrades and introduces Multimodal synthesis support in llama-index-core. Several minor bug fixes address issues related to instrumentation, caching, and token counting.

v0.14.21Breaking3 fixes1 feature
Apr 21, 2026

This release primarily focuses on dependency bumps across numerous packages and includes critical bug fixes in llama-index-core related to node deletion and structured output handling. A breaking change related to message block resolution was also addressed.

v0.14.203 fixes
Apr 3, 2026

This release primarily focuses on dependency updates, including fixing an nltk vulnerability across numerous callback and agent packages, and minor fixes in llama-index-core.

v0.14.1910 fixes5 features
Mar 25, 2026

This release focuses heavily on bug fixes across core indexing and SQL functionality, alongside introducing new LLM providers like MiniMax and updating support for models like GPT 5.4 variants and Gemini 3.

v0.14.189 fixes1 feature
Mar 16, 2026

This release primarily focuses on dependency updates and deprecating Python 3.9 support across numerous packages. Core improvements include aligning text match filters and fixing several bugs related to chat streaming, metadata preservation, and structured output parsing.

v0.14.1623 fixes13 features
Mar 10, 2026

This release introduces new rate limiting features, multimodal reranking, and several security and stability fixes across core components and integrations. Key improvements include better async handling and fixes for tool calling and schema introspection.

v0.14.15Breaking9 fixes17 features
Feb 18, 2026

This release introduces significant multimodal support across core components, integrates the AgentMesh agent layer, and includes numerous updates for LLM providers like Anthropic and Bedrock. Several packages also removed deprecated connection parameters.

v0.14.1427 fixes10 features
Feb 10, 2026

This release focuses on stability, security hardening, and compatibility updates across numerous integrations, including fixes for Pydantic validation errors and deprecation warnings. New features include cost governance via TokenBudgetHandler and expanded model support for Anthropic and OpenAI.

v0.14.13Breaking7 fixes19 features
Jan 21, 2026

This release introduces distributed data ingestion via Ray, token-based code splitting, and new integrations like Apertis LLM and Volcengine MySQL vector store. Notably, ChatMemoryBuffer has been replaced by the generic Memory class.

v0.14.129 fixes11 features
Dec 30, 2025

This release introduces async tool spec support across several integrations, adds new LLM providers like AI Badgr and Typecast, and provides significant updates to MongoDB and Vertex AI vector stores. It also includes various bug fixes for metadata filtering and Pydantic schema handling.

v0.14.101 fix2 features
Dec 4, 2025

This release introduces a mock function calling LLM for core testing and a new Airweave tool integration, alongside minor typo fixes in the Qianfan provider modules.

v0.14.912 fixes8 features
Dec 2, 2025

This release introduces support for Claude 4.5 and GPT-5.1-chat, adds the OVHcloud provider, and improves MultiModal index engines. It also includes critical bug fixes for async utilities, memory management, and various vector store connectors.

v0.14.8Breaking7 fixes7 features
Nov 10, 2025

This release introduces OpenAI v2 SDK support, enhances tool calling for Google GenAI and Bedrock, and adds a new Scrapy-based web reader. It also includes critical fixes for ReAct agents and LanceDB indexing performance.

v0.14.75 fixes9 features
Oct 30, 2025

This release introduces SerpEx tool integration and expands tool call block support across Anthropic, MistralAI, and Ollama. It also adds significant updates to Bedrock, Couchbase vector stores, and GitHub authentication.

v0.14.66 fixes7 features
Oct 26, 2025

This release introduces new integrations for Isaacus and Helicone, adds async support for Bedrock retrievers, and includes critical security fixes for SQL parameterization in PostgresKVStore.

v0.14.58 fixes11 features
Oct 15, 2025

This release introduces support for next-generation models including GPT-5 and Claude 4.5/Haiku 4.5, adds Sglang and SignNow integrations, and provides significant bug fixes for document processing and streaming.

v0.14.410 fixes7 features
Oct 3, 2025

This release introduces support for Claude 4.5 and structured outputs for OpenAI-like models, while primarily addressing dependency issues and bug fixes across the ecosystem.

v0.14.3Breaking4 fixes7 features
Sep 24, 2025

This release introduces ThinkingBlock support across major LLM providers, adds new PaddleOCR and Azure PostgreSQL integrations, and migrates MongoDB components to the PyMongo Asynchronous API. It also includes a critical security fix for SingleStoreDB and updates the Firecrawl reader to the v2 SDK.

v0.14.2
Sep 16, 2025

No release notes provided.

v0.14.1.post1
Sep 15, 2025

No release notes provided.

v0.14.1
Sep 15, 2025

No release notes provided.

v0.14.0Breaking1 feature
Sep 8, 2025

This release updates llama-index-core to 0.14.0, introducing breaking changes in workflows by removing deprecated features and methods, while adding document block support for OpenAI LLMs.

v0.13.6
Sep 7, 2025

No release notes provided.

Common Errors

WorkflowRuntimeError4 reports

WorkflowRuntimeError in LlamaIndex usually arises from unexpected empty messages, validation failures, or errors within individual steps (agents, tools) during workflow execution. To resolve it, carefully inspect the error message for clues on the source (step name, validation issue) and add robust error handling within those steps, ensuring they always return valid outputs or raise more descriptive exceptions if a step fails. Validate agent instructions and tool input/output schemas.

ModuleNotFoundError3 reports

The "ModuleNotFoundError" in LlamaIndex usually arises from missing optional dependencies or incorrect import paths. To fix it, first ensure you've installed the necessary integration package (e.g., `pip install llama-index-llms-langchain`). Then, verify that your import statements align with the correct module structure in the installed package.

NotImplementedError3 reports

The "NotImplementedError" in LlamaIndex usually arises when a required method or functionality is missing from a class or module you're trying to use, often within integrations or custom components. To fix this, identify the specific class and missing method from the error message. Then, either implement the method in a subclass if you've created a custom class, or check for updates to the LlamaIndex library or integration you're using, as the functionality may have been added in a newer version.

UnicodeDecodeError2 reports

UnicodeDecodeError commonly arises when reading files with an encoding different from the assumed UTF-8 default. Specify the correct file encoding (e.g., 'latin-1', 'cp1252') when opening the file, for example, `open("filename.txt", "r", encoding="latin-1")`. Alternatively, ensure the file is saved in UTF-8 encoding if possible for better compatibility.

BadRequestError2 reports

BadRequestError in LlamaIndex usually arises from sending unsupported parameters to the LLM or exceeding API limits. To fix it, carefully check the LLM provider's documentation for supported parameters and API usage limits (e.g., context length, number of requests). Modify your LlamaIndex code to remove unsupported parameters or implement rate limiting and context truncation where necessary.

JSONDecodeError2 reports

Related AI & LLMs Packages

Subscribe to Updates

Get notified when new versions are released

RSS Feed