Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.12.8 #17342

Merged
merged 1 commit into from
Dec 21, 2024
Merged

v0.12.8 #17342

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# ChangeLog

## [2024-12-20]

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

- Fix exclude text in document serialization (#17341)
- Fix missing aput in awrite_response_to_history (#17338)

### `llama-index-graph-rag-cognee` [0.1.0]

- Cognee integration (#17314)

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

- Tweak o1 function calling reqs (#17328)

## [2024-12-18]

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

## [2024-12-20]

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

- Fix exclude text in document serialization (#17341)
- Fix missing aput in awrite_response_to_history (#17338)

### `llama-index-graph-rag-cognee` [0.1.0]

- Cognee integration (#17314)

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

- Tweak o1 function calling reqs (#17328)

## [2024-12-18]

### `llama-index-core` [0.12.7]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/graph_rag/cognee.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.graph_rag.cognee
options:
members:
- GraphRag
4 changes: 4 additions & 0 deletions docs/docs/api_reference/llms/keywordsai.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.llms.keywordsai
options:
members:
- KeywordsAI
7 changes: 7 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ nav:
- ./examples/agent/multi_document_agents-v1.ipynb
- ./examples/agent/multi_document_agents.ipynb
- ./examples/agent/nvidia_agent.ipynb
- ./examples/agent/nvidia_document_research_assistant_for_blog_creation.ipynb
- ./examples/agent/nvidia_sub_question_query_engine.ipynb
- ./examples/agent/openai_agent.ipynb
- ./examples/agent/openai_agent_context_retrieval.ipynb
Expand Down Expand Up @@ -447,6 +448,7 @@ nav:
- ./examples/multi_modal/multi_modal_retrieval.ipynb
- ./examples/multi_modal/multi_modal_video_RAG.ipynb
- ./examples/multi_modal/multi_modal_videorag_videodb.ipynb
- ./examples/multi_modal/multimodal_rag_guardrail_gemini_llmguard_llmguard.ipynb
- ./examples/multi_modal/nebius_multi_modal.ipynb
- ./examples/multi_modal/nvidia_multi_modal.ipynb
- ./examples/multi_modal/ollama_cookbook.ipynb
Expand Down Expand Up @@ -951,6 +953,8 @@ nav:
- ./api_reference/evaluation/retrieval.md
- ./api_reference/evaluation/semantic_similarity.md
- ./api_reference/evaluation/tonic_validate.md
- Graph RAG:
- ./api_reference/graph_rag/cognee.md
- Indexes:
- ./api_reference/indices/bge_m3.md
- ./api_reference/indices/colbert.md
Expand Down Expand Up @@ -1009,6 +1013,7 @@ nav:
- ./api_reference/llms/ibm.md
- ./api_reference/llms/index.md
- ./api_reference/llms/ipex_llm.md
- ./api_reference/llms/keywordsai.md
- ./api_reference/llms/konko.md
- ./api_reference/llms/langchain.md
- ./api_reference/llms/litellm.md
Expand Down Expand Up @@ -2308,6 +2313,8 @@ plugins:
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-bedrock-rerank
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-pinecone-native-rerank
- ../llama-index-integrations/tools/llama-index-tools-scrapegraph
- ../llama-index-integrations/graph_rag/llama-index-graph-rag-cognee
- ../llama-index-integrations/llms/llama-index-llms-keywordsai
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
Expand Down
1 change: 1 addition & 0 deletions docs/scripts/prepare_for_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"embeddings": "Embeddings",
"evaluation": "Evaluation",
"extractors": "Metadata Extractors",
"graph_rag": "Graph RAG",
"indices": "Indexes",
"ingestion": "Ingestion",
"instrumentation": "Instrumentation",
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.7"
__version__ = "0.12.8"

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.12.7"
version = "0.12.8"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
76 changes: 38 additions & 38 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.12.7"
version = "0.12.8"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.4.0"
llama-index-readers-file = "^0.4.0"
llama-index-readers-llama-parse = ">=0.4.0"
llama-index-indices-managed-llama-cloud = ">=0.4.0"
llama-index-core = "^0.12.7"
llama-index-core = "^0.12.8"
llama-index-multi-modal-llms-openai = "^0.4.0"
llama-index-cli = "^0.4.0"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down
Loading