Skip to content

Commit

Permalink
v0.10.48 (run-llama#14303)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jun 21, 2024
1 parent a0752d3 commit a7dd0d7
Show file tree
Hide file tree
Showing 34 changed files with 61 additions and 1,972 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# ChangeLog

## [2024-06-21]

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

- Improve efficiency of average precision (#14260)
- add crewai + llamaindex cookbook (#14266)
- Add mimetype field to TextNode (#14279)
- Improve IBM watsonx.ai docs (#14271)
- Updated frontpage of docs, added agents guide, and more (#14089)

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

- Add support for claude 3.5 (#14277)

### `llama-index-llms-bedrock-converse` [0.1.4]

- Implement Bedrock Converse API for function calling (#14055)

## [2024-06-19]

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

## [2024-06-21]

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

- Improve efficiency of average precision (#14260)
- add crewai + llamaindex cookbook (#14266)
- Add mimetype field to TextNode (#14279)
- Improve IBM watsonx.ai docs (#14271)
- Updated frontpage of docs, added agents guide, and more (#14089)

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

- Add support for claude 3.5 (#14277)

### `llama-index-llms-bedrock-converse` [0.1.4]

- Implement Bedrock Converse API for function calling (#14055)

## [2024-06-19]

### `llama-index-core` [0.10.47]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/packs/mixture_of_agents.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.packs.mixture_of_agents
options:
members:
- MixtureOfAgentsPack
5 changes: 5 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ nav:
- ./examples/cookbooks/anthropic_haiku.ipynb
- ./examples/cookbooks/codestral.ipynb
- ./examples/cookbooks/cohere_retriever_eval.ipynb
- ./examples/cookbooks/crewai_llamaindex.ipynb
- ./examples/cookbooks/llama3_cookbook.ipynb
- ./examples/cookbooks/llama3_cookbook_groq.ipynb
- ./examples/cookbooks/llama3_cookbook_ollama_replicate.ipynb
Expand Down Expand Up @@ -784,6 +785,7 @@ nav:
- ./api_reference/embeddings/huggingface_openvino.md
- ./api_reference/embeddings/huggingface_optimum.md
- ./api_reference/embeddings/huggingface_optimum_intel.md
- ./api_reference/embeddings/ibm.md
- ./api_reference/embeddings/ibm_watsonx.md
- ./api_reference/embeddings/index.md
- ./api_reference/embeddings/instructor.md
Expand Down Expand Up @@ -870,6 +872,7 @@ nav:
- ./api_reference/llms/groq.md
- ./api_reference/llms/huggingface.md
- ./api_reference/llms/huggingface_api.md
- ./api_reference/llms/ibm.md
- ./api_reference/llms/ibm_watsonx.md
- ./api_reference/llms/index.md
- ./api_reference/llms/ipex_llm.md
Expand Down Expand Up @@ -915,6 +918,7 @@ nav:
- ./api_reference/llms/upstage.md
- ./api_reference/llms/vertex.md
- ./api_reference/llms/vllm.md
- ./api_reference/llms/watsonx.md
- ./api_reference/llms/xinference.md
- ./api_reference/llms/you.md
- Llama Datasets:
Expand Down Expand Up @@ -950,6 +954,7 @@ nav:
- ./api_reference/packs/llama_dataset_metadata.md
- ./api_reference/packs/llama_guard_moderator.md
- ./api_reference/packs/llava_completion.md
- ./api_reference/packs/mixture_of_agents.md
- ./api_reference/packs/multi_document_agents.md
- ./api_reference/packs/multi_tenancy_rag.md
- ./api_reference/packs/multidoc_autoretrieval.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.10.47"
__version__ = "0.10.48"

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 @@ -43,7 +43,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.47"
version = "0.10.48"

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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit a7dd0d7

Please sign in to comment.