Skip to content

Commit 4b50ce8

Browse files
v0.12.8 (#17342)
1 parent 46a74f5 commit 4b50ce8

File tree

10 files changed

+88
-42
lines changed

10 files changed

+88
-42
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# ChangeLog
22

3+
## [2024-12-20]
4+
5+
### `llama-index-core` [0.12.8]
6+
7+
- Fix exclude text in document serialization (#17341)
8+
- Fix missing aput in awrite_response_to_history (#17338)
9+
10+
### `llama-index-graph-rag-cognee` [0.1.0]
11+
12+
- Cognee integration (#17314)
13+
14+
### `llama-index-llms-openai` [0.3.12]
15+
16+
- Tweak o1 function calling reqs (#17328)
17+
318
## [2024-12-18]
419

520
### `llama-index-core` [0.12.7]

docs/docs/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# ChangeLog
22

3+
## [2024-12-20]
4+
5+
### `llama-index-core` [0.12.8]
6+
7+
- Fix exclude text in document serialization (#17341)
8+
- Fix missing aput in awrite_response_to_history (#17338)
9+
10+
### `llama-index-graph-rag-cognee` [0.1.0]
11+
12+
- Cognee integration (#17314)
13+
14+
### `llama-index-llms-openai` [0.3.12]
15+
16+
- Tweak o1 function calling reqs (#17328)
17+
318
## [2024-12-18]
419

520
### `llama-index-core` [0.12.7]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.graph_rag.cognee
2+
options:
3+
members:
4+
- GraphRag
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.llms.keywordsai
2+
options:
3+
members:
4+
- KeywordsAI

docs/mkdocs.yml

+7
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ nav:
113113
- ./examples/agent/multi_document_agents-v1.ipynb
114114
- ./examples/agent/multi_document_agents.ipynb
115115
- ./examples/agent/nvidia_agent.ipynb
116+
- ./examples/agent/nvidia_document_research_assistant_for_blog_creation.ipynb
116117
- ./examples/agent/nvidia_sub_question_query_engine.ipynb
117118
- ./examples/agent/openai_agent.ipynb
118119
- ./examples/agent/openai_agent_context_retrieval.ipynb
@@ -447,6 +448,7 @@ nav:
447448
- ./examples/multi_modal/multi_modal_retrieval.ipynb
448449
- ./examples/multi_modal/multi_modal_video_RAG.ipynb
449450
- ./examples/multi_modal/multi_modal_videorag_videodb.ipynb
451+
- ./examples/multi_modal/multimodal_rag_guardrail_gemini_llmguard_llmguard.ipynb
450452
- ./examples/multi_modal/nebius_multi_modal.ipynb
451453
- ./examples/multi_modal/nvidia_multi_modal.ipynb
452454
- ./examples/multi_modal/ollama_cookbook.ipynb
@@ -951,6 +953,8 @@ nav:
951953
- ./api_reference/evaluation/retrieval.md
952954
- ./api_reference/evaluation/semantic_similarity.md
953955
- ./api_reference/evaluation/tonic_validate.md
956+
- Graph RAG:
957+
- ./api_reference/graph_rag/cognee.md
954958
- Indexes:
955959
- ./api_reference/indices/bge_m3.md
956960
- ./api_reference/indices/colbert.md
@@ -1009,6 +1013,7 @@ nav:
10091013
- ./api_reference/llms/ibm.md
10101014
- ./api_reference/llms/index.md
10111015
- ./api_reference/llms/ipex_llm.md
1016+
- ./api_reference/llms/keywordsai.md
10121017
- ./api_reference/llms/konko.md
10131018
- ./api_reference/llms/langchain.md
10141019
- ./api_reference/llms/litellm.md
@@ -2308,6 +2313,8 @@ plugins:
23082313
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-bedrock-rerank
23092314
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-pinecone-native-rerank
23102315
- ../llama-index-integrations/tools/llama-index-tools-scrapegraph
2316+
- ../llama-index-integrations/graph_rag/llama-index-graph-rag-cognee
2317+
- ../llama-index-integrations/llms/llama-index-llms-keywordsai
23112318
- redirects:
23122319
redirect_maps:
23132320
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md

docs/scripts/prepare_for_build.py

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"embeddings": "Embeddings",
7373
"evaluation": "Evaluation",
7474
"extractors": "Metadata Extractors",
75+
"graph_rag": "Graph RAG",
7576
"indices": "Indexes",
7677
"ingestion": "Ingestion",
7778
"instrumentation": "Instrumentation",

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.7"
3+
__version__ = "0.12.8"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ name = "llama-index-core"
4646
packages = [{include = "llama_index"}]
4747
readme = "README.md"
4848
repository = "https://github.com/run-llama/llama_index"
49-
version = "0.12.7"
49+
version = "0.12.8"
5050

5151
[tool.poetry.dependencies]
5252
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}

poetry.lock

+38-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ name = "llama-index"
4545
packages = [{from = "_llama-index", include = "llama_index"}]
4646
readme = "README.md"
4747
repository = "https://github.com/run-llama/llama_index"
48-
version = "0.12.7"
48+
version = "0.12.8"
4949

5050
[tool.poetry.dependencies]
5151
python = ">=3.9,<4.0"
@@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.4.0"
5757
llama-index-readers-file = "^0.4.0"
5858
llama-index-readers-llama-parse = ">=0.4.0"
5959
llama-index-indices-managed-llama-cloud = ">=0.4.0"
60-
llama-index-core = "^0.12.7"
60+
llama-index-core = "^0.12.8"
6161
llama-index-multi-modal-llms-openai = "^0.4.0"
6262
llama-index-cli = "^0.4.0"
6363
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core

0 commit comments

Comments
 (0)