Skip to content

Commit

Permalink
v0.12.18 (#17834)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Feb 17, 2025
1 parent ea04280 commit a59dce8
Show file tree
Hide file tree
Showing 11 changed files with 277 additions and 1,140 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# ChangeLog

## [2025-02-16]

### `llama-index-core` [0.12.18]

- improve prompt helper multimodal support (#17831)
- Retain return type from `@dispatcher.span` (#17817)
- Silence nltk downloader (#17816)
- Keep a reference to asyncio tasks in `astream_chat()` (#17812)

### `llama-index-indices-managed-llama-cloud` [0.6.6]

- include file & page metadata when returning image node from llamacloud retriever (#17823)
- Improve error logs for llamacloud indices (#17827)

### `llama-index-indices-managed-vertexai` [0.2.1]

- Add textnode metadata (#17814)

### `llama-index-llms-anthropic` [0.6.5]

- feat: ✨ add support to anthropic claude-3-5-haiku-latest model name (#17818)

### `llama-index-llms-openai` [0.3.20]

- openai developer message fix for older o1 models (#17833)

### `llama-index-readers-microsoft-outlook-emails` [0.1.0]

- feat: add Microsoft Outlook Email Reader integration (#17829)

### `llama-index-tools-mcp` [0.1.0]

- feat: add mcp tool spec (#17795)

### `llama-index-tools-playwright` [0.1.1]

- Fix: Change Playwright browser tool from sync to async (#17808)

### `llama-index-vector-stores-azureaisearch` [0.3.5]

- Expand AzureAISearchVectorStore filter options (#17811)
- azureaisearch: prefer using hybrid_top_k over similarity_top_k for hybrid search (#17612)
- azureaisearch: add default to None for semantic configuration name (#17807)

### `llama-index-vector-stores-mariadb` [0.3.1]

- MariaDB Vector Store Integration: Add tuning parameters and utility functions (#17791)

## [2025-02-11]

### `llama-index-core` [0.12.17]
Expand Down
48 changes: 48 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# ChangeLog

## [2025-02-16]

### `llama-index-core` [0.12.18]

- improve prompt helper multimodal support (#17831)
- Retain return type from `@dispatcher.span` (#17817)
- Silence nltk downloader (#17816)
- Keep a reference to asyncio tasks in `astream_chat()` (#17812)

### `llama-index-indices-managed-llama-cloud` [0.6.6]

- include file & page metadata when returning image node from llamacloud retriever (#17823)
- Improve error logs for llamacloud indices (#17827)

### `llama-index-indices-managed-vertexai` [0.2.1]

- Add textnode metadata (#17814)

### `llama-index-llms-anthropic` [0.6.5]

- feat: ✨ add support to anthropic claude-3-5-haiku-latest model name (#17818)

### `llama-index-llms-openai` [0.3.20]

- openai developer message fix for older o1 models (#17833)

### `llama-index-readers-microsoft-outlook-emails` [0.1.0]

- feat: add Microsoft Outlook Email Reader integration (#17829)

### `llama-index-tools-mcp` [0.1.0]

- feat: add mcp tool spec (#17795)

### `llama-index-tools-playwright` [0.1.1]

- Fix: Change Playwright browser tool from sync to async (#17808)

### `llama-index-vector-stores-azureaisearch` [0.3.5]

- Expand AzureAISearchVectorStore filter options (#17811)
- azureaisearch: prefer using hybrid_top_k over similarity_top_k for hybrid search (#17612)
- azureaisearch: add default to None for semantic configuration name (#17807)

### `llama-index-vector-stores-mariadb` [0.3.1]

- MariaDB Vector Store Integration: Add tuning parameters and utility functions (#17791)

## [2025-02-11]

### `llama-index-core` [0.12.17]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/readers/microsoft_outlook_emails.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.readers.microsoft_outlook_emails
options:
members:
- OutlookEmailReader
4 changes: 4 additions & 0 deletions docs/docs/api_reference/tools/mcp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.tools.mcp
options:
members:
- McpToolSpec
11 changes: 11 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,9 @@ nav:
- ./examples/customization/streaming/SimpleIndexDemo-streaming.ipynb
- ./examples/customization/streaming/chat_engine_condense_question_stream_response.ipynb
- Data Connectors:
- ./examples/data_connectors/AlloyDBReaderDemo.ipynb
- ./examples/data_connectors/ChromaDemo.ipynb
- ./examples/data_connectors/CloudSQLPgReaderDemo.ipynb
- ./examples/data_connectors/DashvectorReaderDemo.ipynb
- ./examples/data_connectors/DatabaseReaderDemo.ipynb
- ./examples/data_connectors/DeepLakeReader.ipynb
Expand Down Expand Up @@ -221,7 +223,9 @@ nav:
- Discover LlamaIndex:
- ./examples/discover_llamaindex/document_management/Discord_Thread_Management.ipynb
- Docstores:
- ./examples/docstore/AlloyDBDocstoreDemo.ipynb
- ./examples/docstore/AzureDocstoreDemo.ipynb
- ./examples/docstore/CloudSQLPgDocstoreDemo.ipynb
- ./examples/docstore/DocstoreDemo.ipynb
- ./examples/docstore/DynamoDBDocstoreDemo.ipynb
- ./examples/docstore/FirestoreDemo.ipynb
Expand Down Expand Up @@ -277,6 +281,7 @@ nav:
- ./examples/embeddings/voyageai.ipynb
- ./examples/embeddings/yandexgpt.ipynb
- Evaluation:
- ./examples/evaluation/AIMon.ipynb
- ./examples/evaluation/BeirEvaluation.ipynb
- ./examples/evaluation/Deepeval.ipynb
- ./examples/evaluation/HotpotQADistractor.ipynb
Expand Down Expand Up @@ -616,6 +621,7 @@ nav:
- Vector Stores:
- ./examples/vector_stores/AWSDocDBDemo.ipynb
- ./examples/vector_stores/AlibabaCloudOpenSearchIndexDemo.ipynb
- ./examples/vector_stores/AlloyDBVectorStoreDemo.ipynb
- ./examples/vector_stores/AmazonNeptuneVectorDemo.ipynb
- ./examples/vector_stores/AnalyticDBDemo.ipynb
- ./examples/vector_stores/AstraDBIndexDemo.ipynb
Expand All @@ -631,6 +637,7 @@ nav:
- ./examples/vector_stores/ChromaFireworksNomic.ipynb
- ./examples/vector_stores/ChromaIndexDemo.ipynb
- ./examples/vector_stores/ClickHouseIndexDemo.ipynb
- ./examples/vector_stores/CloudSQLPgVectorStoreDemo.ipynb
- ./examples/vector_stores/CouchbaseVectorStoreDemo.ipynb
- ./examples/vector_stores/DashvectorIndexDemo.ipynb
- ./examples/vector_stores/DatabricksVectorSearchDemo.ipynb
Expand Down Expand Up @@ -1397,6 +1404,7 @@ nav:
- ./api_reference/readers/metal.md
- ./api_reference/readers/microsoft_onedrive.md
- ./api_reference/readers/microsoft_outlook.md
- ./api_reference/readers/microsoft_outlook_emails.md
- ./api_reference/readers/microsoft_sharepoint.md
- ./api_reference/readers/milvus.md
- ./api_reference/readers/minio.md
Expand Down Expand Up @@ -1664,6 +1672,7 @@ nav:
- ./api_reference/tools/jira.md
- ./api_reference/tools/linkup_research.md
- ./api_reference/tools/load_and_search.md
- ./api_reference/tools/mcp.md
- ./api_reference/tools/metaphor.md
- ./api_reference/tools/multion.md
- ./api_reference/tools/neo4j.md
Expand Down Expand Up @@ -2364,6 +2373,8 @@ plugins:
- ../llama-index-integrations/tools/llama-index-tools-playwright
- ../llama-index-integrations/readers/llama-index-readers-whisper
- ../llama-index-integrations/llms/llama-index-llms-openvino-genai
- ../llama-index-integrations/tools/llama-index-tools-mcp
- ../llama-index-integrations/readers/llama-index-readers-microsoft-outlook-emails
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/llama_index/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Init file of LlamaIndex."""

__version__ = "0.12.17"
__version__ = "0.12.18"

import logging
from logging import NullHandler
Expand Down
Loading

0 comments on commit a59dce8

Please sign in to comment.