Skip to content

Commit 3d00f90

Browse files
v0.12.1 (#17018)
* core vbump * changelog * v0.12.1
1 parent aa4767f commit 3d00f90

File tree

9 files changed

+354
-285
lines changed

9 files changed

+354
-285
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# ChangeLog
22

3+
## [2024-11-20]
4+
5+
### `llama-index-core` [0.12.1]
6+
7+
- Pin pydantic to `<2.10` temporarily
8+
- feat[react-multimodal]: add gemini support for images in MultimodalReActAgentWorker (#16992)
9+
10+
### `llama-index-indices-managed-llama-cloud` [0.6.2]
11+
12+
- api_key typo in llama-cloud-index (#17001)
13+
14+
### `llama-index-llms-openai` [0.3.1]
15+
16+
- Add support for latest gpt-4o model (#17015)
17+
18+
### `llama-index-llms-zhipuai` [0.2.1]
19+
20+
- zhipuai add stop param to api (#16996)
21+
22+
### `llama-index-multi-modal-llms-mistralai` [0.3.1]
23+
24+
- Add support for mistral latest models (#16991)
25+
26+
### `llama-index-multi-modal-llms-replicate` [0.3.1]
27+
28+
- Fix: Correct typo in replicate multi modal package (#16998)
29+
30+
### `llama-index-vector-stores-pinecone` [0.4.1]
31+
32+
- add get_nodes to pinecone (#17007)
33+
334
## [2024-11-17]
435

536
**NOTE:** Updating to v0.12.0 will require bumping every other `llama-index-*` package! Every package has had a version bump. Only notable changes are below.

docs/docs/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# ChangeLog
22

3+
## [2024-11-20]
4+
5+
### `llama-index-core` [0.12.1]
6+
7+
- Pin pydantic to `<2.10` temporarily
8+
- feat[react-multimodal]: add gemini support for images in MultimodalReActAgentWorker (#16992)
9+
10+
### `llama-index-indices-managed-llama-cloud` [0.6.2]
11+
12+
- api_key typo in llama-cloud-index (#17001)
13+
14+
### `llama-index-llms-openai` [0.3.1]
15+
16+
- Add support for latest gpt-4o model (#17015)
17+
18+
### `llama-index-llms-zhipuai` [0.2.1]
19+
20+
- zhipuai add stop param to api (#16996)
21+
22+
### `llama-index-multi-modal-llms-mistralai` [0.3.1]
23+
24+
- Add support for mistral latest models (#16991)
25+
26+
### `llama-index-multi-modal-llms-replicate` [0.3.1]
27+
28+
- Fix: Correct typo in replicate multi modal package (#16998)
29+
30+
### `llama-index-vector-stores-pinecone` [0.4.1]
31+
32+
- add get_nodes to pinecone (#17007)
33+
334
## [2024-11-17]
435

536
**NOTE:** Updating to v0.12.0 will require bumping every other `llama-index-*` package! Every package has had a version bump. Only notable changes are below.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.tools.elevenlabs
2+
options:
3+
members:
4+
- ElevenLabsToolSpec

docs/mkdocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ nav:
386386
- ./examples/llm/qianfan.ipynb
387387
- ./examples/llm/rungpt.ipynb
388388
- ./examples/llm/sagemaker_endpoint_llm.ipynb
389-
- ./examples/llm/sambanova.ipynb
389+
- ./examples/llm/sambanovasystems.ipynb
390390
- ./examples/llm/solar.ipynb
391391
- ./examples/llm/together.ipynb
392392
- ./examples/llm/unify.ipynb
@@ -451,6 +451,7 @@ nav:
451451
- ./examples/multi_modal/multi_modal_retrieval.ipynb
452452
- ./examples/multi_modal/multi_modal_video_RAG.ipynb
453453
- ./examples/multi_modal/multi_modal_videorag_videodb.ipynb
454+
- ./examples/multi_modal/nebius_multi_modal.ipynb
454455
- ./examples/multi_modal/nvidia_multi_modal.ipynb
455456
- ./examples/multi_modal/ollama_cookbook.ipynb
456457
- ./examples/multi_modal/openai_multi_modal.ipynb
@@ -1630,6 +1631,7 @@ nav:
16301631
- ./api_reference/tools/database.md
16311632
- ./api_reference/tools/docker_code.md
16321633
- ./api_reference/tools/duckduckgo.md
1634+
- ./api_reference/tools/elevenlabs.md
16331635
- ./api_reference/tools/exa.md
16341636
- ./api_reference/tools/finance.md
16351637
- ./api_reference/tools/function.md
@@ -2332,6 +2334,8 @@ plugins:
23322334
- ../llama-index-integrations/readers/llama-index-readers-gitbook
23332335
- ../llama-index-integrations/llms/llama-index-llms-siliconflow
23342336
- ../llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-nvidia
2337+
- ../llama-index-integrations/tools/llama-index-tools-elevenlabs
2338+
- ../llama-index-integrations/llms/llama-index-llms-nebius
23352339
- redirects:
23362340
redirect_maps:
23372341
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.12.0"
3+
__version__ = "0.12.1"
44

55
import logging
66
from logging import NullHandler

llama-index-core/poetry.lock

Lines changed: 184 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

llama-index-core/pyproject.toml

Lines changed: 2 additions & 2 deletions
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.0"
49+
version = "0.12.1"
5050

5151
[tool.poetry.dependencies]
5252
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
@@ -70,7 +70,7 @@ tqdm = "^4.66.1"
7070
pillow = ">=9.0.0"
7171
PyYAML = ">=6.0.1"
7272
wrapt = "*"
73-
pydantic = ">=2.7.0,<3.0.0"
73+
pydantic = ">=2.7.0,<2.10.0" # TODO: 2.10 was breaking many things, unpin when it settles down
7474
filetype = "^1.2.0" # Used for multi-modal MIME utils
7575
eval-type-backport = {python = "<3.10", version = "^0.2.0"}
7676

0 commit comments

Comments
 (0)