Skip to content

Commit a59dce8

Browse files
v0.12.18 (run-llama#17834)
1 parent ea04280 commit a59dce8

File tree

11 files changed

+277
-1140
lines changed

11 files changed

+277
-1140
lines changed

CHANGELOG.md

+48
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
# ChangeLog
22

3+
## [2025-02-16]
4+
5+
### `llama-index-core` [0.12.18]
6+
7+
- improve prompt helper multimodal support (#17831)
8+
- Retain return type from `@dispatcher.span` (#17817)
9+
- Silence nltk downloader (#17816)
10+
- Keep a reference to asyncio tasks in `astream_chat()` (#17812)
11+
12+
### `llama-index-indices-managed-llama-cloud` [0.6.6]
13+
14+
- include file & page metadata when returning image node from llamacloud retriever (#17823)
15+
- Improve error logs for llamacloud indices (#17827)
16+
17+
### `llama-index-indices-managed-vertexai` [0.2.1]
18+
19+
- Add textnode metadata (#17814)
20+
21+
### `llama-index-llms-anthropic` [0.6.5]
22+
23+
- feat: ✨ add support to anthropic claude-3-5-haiku-latest model name (#17818)
24+
25+
### `llama-index-llms-openai` [0.3.20]
26+
27+
- openai developer message fix for older o1 models (#17833)
28+
29+
### `llama-index-readers-microsoft-outlook-emails` [0.1.0]
30+
31+
- feat: add Microsoft Outlook Email Reader integration (#17829)
32+
33+
### `llama-index-tools-mcp` [0.1.0]
34+
35+
- feat: add mcp tool spec (#17795)
36+
37+
### `llama-index-tools-playwright` [0.1.1]
38+
39+
- Fix: Change Playwright browser tool from sync to async (#17808)
40+
41+
### `llama-index-vector-stores-azureaisearch` [0.3.5]
42+
43+
- Expand AzureAISearchVectorStore filter options (#17811)
44+
- azureaisearch: prefer using hybrid_top_k over similarity_top_k for hybrid search (#17612)
45+
- azureaisearch: add default to None for semantic configuration name (#17807)
46+
47+
### `llama-index-vector-stores-mariadb` [0.3.1]
48+
49+
- MariaDB Vector Store Integration: Add tuning parameters and utility functions (#17791)
50+
351
## [2025-02-11]
452

553
### `llama-index-core` [0.12.17]

docs/docs/CHANGELOG.md

+48
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
# ChangeLog
22

3+
## [2025-02-16]
4+
5+
### `llama-index-core` [0.12.18]
6+
7+
- improve prompt helper multimodal support (#17831)
8+
- Retain return type from `@dispatcher.span` (#17817)
9+
- Silence nltk downloader (#17816)
10+
- Keep a reference to asyncio tasks in `astream_chat()` (#17812)
11+
12+
### `llama-index-indices-managed-llama-cloud` [0.6.6]
13+
14+
- include file & page metadata when returning image node from llamacloud retriever (#17823)
15+
- Improve error logs for llamacloud indices (#17827)
16+
17+
### `llama-index-indices-managed-vertexai` [0.2.1]
18+
19+
- Add textnode metadata (#17814)
20+
21+
### `llama-index-llms-anthropic` [0.6.5]
22+
23+
- feat: ✨ add support to anthropic claude-3-5-haiku-latest model name (#17818)
24+
25+
### `llama-index-llms-openai` [0.3.20]
26+
27+
- openai developer message fix for older o1 models (#17833)
28+
29+
### `llama-index-readers-microsoft-outlook-emails` [0.1.0]
30+
31+
- feat: add Microsoft Outlook Email Reader integration (#17829)
32+
33+
### `llama-index-tools-mcp` [0.1.0]
34+
35+
- feat: add mcp tool spec (#17795)
36+
37+
### `llama-index-tools-playwright` [0.1.1]
38+
39+
- Fix: Change Playwright browser tool from sync to async (#17808)
40+
41+
### `llama-index-vector-stores-azureaisearch` [0.3.5]
42+
43+
- Expand AzureAISearchVectorStore filter options (#17811)
44+
- azureaisearch: prefer using hybrid_top_k over similarity_top_k for hybrid search (#17612)
45+
- azureaisearch: add default to None for semantic configuration name (#17807)
46+
47+
### `llama-index-vector-stores-mariadb` [0.3.1]
48+
49+
- MariaDB Vector Store Integration: Add tuning parameters and utility functions (#17791)
50+
351
## [2025-02-11]
452

553
### `llama-index-core` [0.12.17]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.readers.microsoft_outlook_emails
2+
options:
3+
members:
4+
- OutlookEmailReader

docs/docs/api_reference/tools/mcp.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.tools.mcp
2+
options:
3+
members:
4+
- McpToolSpec

docs/mkdocs.yml

+11
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ nav:
183183
- ./examples/customization/streaming/SimpleIndexDemo-streaming.ipynb
184184
- ./examples/customization/streaming/chat_engine_condense_question_stream_response.ipynb
185185
- Data Connectors:
186+
- ./examples/data_connectors/AlloyDBReaderDemo.ipynb
186187
- ./examples/data_connectors/ChromaDemo.ipynb
188+
- ./examples/data_connectors/CloudSQLPgReaderDemo.ipynb
187189
- ./examples/data_connectors/DashvectorReaderDemo.ipynb
188190
- ./examples/data_connectors/DatabaseReaderDemo.ipynb
189191
- ./examples/data_connectors/DeepLakeReader.ipynb
@@ -221,7 +223,9 @@ nav:
221223
- Discover LlamaIndex:
222224
- ./examples/discover_llamaindex/document_management/Discord_Thread_Management.ipynb
223225
- Docstores:
226+
- ./examples/docstore/AlloyDBDocstoreDemo.ipynb
224227
- ./examples/docstore/AzureDocstoreDemo.ipynb
228+
- ./examples/docstore/CloudSQLPgDocstoreDemo.ipynb
225229
- ./examples/docstore/DocstoreDemo.ipynb
226230
- ./examples/docstore/DynamoDBDocstoreDemo.ipynb
227231
- ./examples/docstore/FirestoreDemo.ipynb
@@ -277,6 +281,7 @@ nav:
277281
- ./examples/embeddings/voyageai.ipynb
278282
- ./examples/embeddings/yandexgpt.ipynb
279283
- Evaluation:
284+
- ./examples/evaluation/AIMon.ipynb
280285
- ./examples/evaluation/BeirEvaluation.ipynb
281286
- ./examples/evaluation/Deepeval.ipynb
282287
- ./examples/evaluation/HotpotQADistractor.ipynb
@@ -616,6 +621,7 @@ nav:
616621
- Vector Stores:
617622
- ./examples/vector_stores/AWSDocDBDemo.ipynb
618623
- ./examples/vector_stores/AlibabaCloudOpenSearchIndexDemo.ipynb
624+
- ./examples/vector_stores/AlloyDBVectorStoreDemo.ipynb
619625
- ./examples/vector_stores/AmazonNeptuneVectorDemo.ipynb
620626
- ./examples/vector_stores/AnalyticDBDemo.ipynb
621627
- ./examples/vector_stores/AstraDBIndexDemo.ipynb
@@ -631,6 +637,7 @@ nav:
631637
- ./examples/vector_stores/ChromaFireworksNomic.ipynb
632638
- ./examples/vector_stores/ChromaIndexDemo.ipynb
633639
- ./examples/vector_stores/ClickHouseIndexDemo.ipynb
640+
- ./examples/vector_stores/CloudSQLPgVectorStoreDemo.ipynb
634641
- ./examples/vector_stores/CouchbaseVectorStoreDemo.ipynb
635642
- ./examples/vector_stores/DashvectorIndexDemo.ipynb
636643
- ./examples/vector_stores/DatabricksVectorSearchDemo.ipynb
@@ -1397,6 +1404,7 @@ nav:
13971404
- ./api_reference/readers/metal.md
13981405
- ./api_reference/readers/microsoft_onedrive.md
13991406
- ./api_reference/readers/microsoft_outlook.md
1407+
- ./api_reference/readers/microsoft_outlook_emails.md
14001408
- ./api_reference/readers/microsoft_sharepoint.md
14011409
- ./api_reference/readers/milvus.md
14021410
- ./api_reference/readers/minio.md
@@ -1664,6 +1672,7 @@ nav:
16641672
- ./api_reference/tools/jira.md
16651673
- ./api_reference/tools/linkup_research.md
16661674
- ./api_reference/tools/load_and_search.md
1675+
- ./api_reference/tools/mcp.md
16671676
- ./api_reference/tools/metaphor.md
16681677
- ./api_reference/tools/multion.md
16691678
- ./api_reference/tools/neo4j.md
@@ -2364,6 +2373,8 @@ plugins:
23642373
- ../llama-index-integrations/tools/llama-index-tools-playwright
23652374
- ../llama-index-integrations/readers/llama-index-readers-whisper
23662375
- ../llama-index-integrations/llms/llama-index-llms-openvino-genai
2376+
- ../llama-index-integrations/tools/llama-index-tools-mcp
2377+
- ../llama-index-integrations/readers/llama-index-readers-microsoft-outlook-emails
23672378
- redirects:
23682379
redirect_maps:
23692380
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md

llama-index-core/llama_index/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.12.17"
3+
__version__ = "0.12.18"
44

55
import logging
66
from logging import NullHandler

0 commit comments

Comments
 (0)