Skip to content

Commit

Permalink
v0.12.15 (#17688)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jan 31, 2025
1 parent f8d29ae commit 3e2caa7
Show file tree
Hide file tree
Showing 10 changed files with 275 additions and 170 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# ChangeLog

## [2025-01-31]

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

- Add error_on_tool_error param to FunctionCallingLLM.predict_and_call (#17663)
- Get tool description from pydantic field (#17679)
- fix: make ctx.\_events_buffer json-serializable (#17676)
- feat: allow to exclude empty file simple directory reader (#17656)
- improve markdown llm output parsing (#17577)
- small typo fix in the default plan refine prompt (#17644)

### `llama-index-agent-openai` [0.4.3]

- fix repeated sources when doing parallel tool calling (#17645)

### `llama-index-embeddings-text-embeddings-inference` [0.3.2]

- Add endpoint parameter to TextEmbeddingsInference (#17598)

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

- fix bedrock function calling (#17658)

### `llama-index-llms-cortex` [0.1.0]

- Add Snowflake Cortex Integration (#17585)

### `llama-index-llms-fireworks` [0.3.2]

- Deepseek-r1 is now supported by fireworks (#17657)
- Deepseek-v3 is now supported by fireworks (#17518)

### `llama-index-llms-gemini` [0.4.5]

- adding the chat decorators to async calls (#17678)

### `llama-index-llms-llama-cpp` [0.4.0]

- update llama-cpp integration + docs (#17647)

### `llama-index-vector-stores-azureaisearch` [0.3.3]

- Feat/fix Azure AI Search Hybrid Semantic Search Unusability due to hardcoded parameter (#17683)

### `llama-index-vector-stores-pinecone` [0.4.4]

- `get_nodes()` now accepts include_values param to return embeddings (#17635)

## [2025-01-25]

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

## [2025-01-31]

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

- Add error_on_tool_error param to FunctionCallingLLM.predict_and_call (#17663)
- Get tool description from pydantic field (#17679)
- fix: make ctx._events_buffer json-serializable (#17676)
- feat: allow to exclude empty file simple directory reader (#17656)
- improve markdown llm output parsing (#17577)
- small typo fix in the default plan refine prompt (#17644)

### `llama-index-agent-openai` [0.4.3]

- fix repeated sources when doing parallel tool calling (#17645)

### `llama-index-embeddings-text-embeddings-inference` [0.3.2]

- Add endpoint parameter to TextEmbeddingsInference (#17598)

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

- fix bedrock function calling (#17658)

### `llama-index-llms-cortex` [0.1.0]

- Add Snowflake Cortex Integration (#17585)

### `llama-index-llms-fireworks` [0.3.2]

- Deepseek-r1 is now supported by fireworks (#17657)
- Deepseek-v3 is now supported by fireworks (#17518)

### `llama-index-llms-gemini` [0.4.5]

- adding the chat decorators to async calls (#17678)

### `llama-index-llms-llama-cpp` [0.4.0]

- update llama-cpp integration + docs (#17647)

### `llama-index-vector-stores-azureaisearch` [0.3.3]

- Feat/fix Azure AI Search Hybrid Semantic Search Unusability due to hardcoded parameter (#17683)

### `llama-index-vector-stores-pinecone` [0.4.4]

- `get_nodes()` now accepts include_values param to return embeddings (#17635)

## [2025-01-25]

### `llama-index-core` [0.12.14]
Expand Down
10 changes: 7 additions & 3 deletions docs/docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,19 @@ LlamaIndex is organized as a **monorepo**, meaning different packages live withi
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
2. Activate the environment:
2. Install the Poetry shell plugin (if you don't already have it):
```bash
poetry self add poetry-plugin-shell
```
3. Activate the environment:
```bash
poetry shell
```
3. Install dependencies:
4. Install dependencies:
```bash
poetry install --only dev,docs --no-root
```
4. Install the package(s) you want to work on. You will for sure need to install `llama-index-core`:
5. Install the package(s) you want to work on. You will for sure need to install `llama-index-core`:

```bash
pip install -e llama-index-core
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/llms/cortex.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.llms.cortex
options:
members:
- Cortex
4 changes: 3 additions & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ nav:
- ./examples/llm/langchain.ipynb
- ./examples/llm/litellm.ipynb
- ./examples/llm/llama_2.ipynb
- ./examples/llm/llama_cpp.ipynb
- ./examples/llm/llama_2_rap_battle.ipynb
- ./examples/llm/llama_api.ipynb
- ./examples/llm/llama_cpp.ipynb
- ./examples/llm/llamafile.ipynb
- ./examples/llm/llm_predictor.ipynb
- ./examples/llm/lmstudio.ipynb
Expand Down Expand Up @@ -1004,6 +1004,7 @@ nav:
- ./api_reference/llms/clarifai.md
- ./api_reference/llms/cleanlab.md
- ./api_reference/llms/cohere.md
- ./api_reference/llms/cortex.md
- ./api_reference/llms/custom_llm.md
- ./api_reference/llms/dashscope.md
- ./api_reference/llms/databricks.md
Expand Down Expand Up @@ -2344,6 +2345,7 @@ plugins:
- ../llama-index-integrations/llms/llama-index-llms-stepfun
- ../llama-index-integrations/tools/llama-index-tools-linkup-research
- ../llama-index-integrations/llms/llama-index-llms-deepseek
- ../llama-index-integrations/llms/llama-index-llms-cortex
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.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.12.14"
__version__ = "0.12.15"

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.14"
version = "0.12.15"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-gemini"
readme = "README.md"
version = "0.4.4"
version = "0.4.5"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down
Loading

0 comments on commit 3e2caa7

Please sign in to comment.