Skip to content

Commit 30404e9

Browse files
committed
Merge branch 'main' into add-chat-solver
2 parents a9bc968 + e91a6a2 commit 30404e9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [UNRELEASED]
1111

12+
13+
14+
## [0.13.2] - 2025-10-02
15+
1216
### Improvements
1317

1418
* `ContentToolResult`'s `.get_model_value()` method now calls `.to_json(orient="record")` (instead of `.to_json()`) when relevant. As a result, if a tool call returns a Pandas `DataFrame` (or similar), the model now receives a less confusing (and smaller) JSON format. (#183)

docs/misc/RAG.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ And, as we'll see, there are several moving parts to consider when implementing
5656

5757
Obviously, in order to retrieve trusted content, we first need some content to retrieve.
5858
Typically content is retrieved from a **knowledge store** -- essentially a database that stores documents in a way that allows for efficient retrieval based on semantic similarity.
59-
A knowledge store also often takes the form of a **vector store** or **embedding index** because of it's efficiency in storing and retrieving content based on semantic similarity.
59+
A knowledge store also often takes the form of a **vector store** or **embedding index** because of its efficiency in storing and retrieving content based on semantic similarity.
6060
This approach requires embedding the content into numerical vectors, which can be done using various machine learning models.
6161

6262
### Create store {#create-store}
@@ -68,7 +68,7 @@ It doesn't really matter which one you choose, but due to its popularity, maturi
6868
pip install llama-index
6969
```
7070

71-
With `llama-index`, it's easy to create a knowledge store from a wide variety of input formats, such as text files, [web pages](https://docs.llamaindex.ai/en/stable/examples/data_connectors/WebPageDemo/), and [much more](https://pypi.org/project/llama-index-readers-markitdown/).
71+
With `llama-index`, it's easy to create a knowledge store from a wide variety of input formats, such as text files, [web pages](https://developers.llamaindex.ai/python/examples/data_connectors/webpagedemo/), and [much more](https://pypi.org/project/llama-index-readers-markitdown/).
7272
That said, for this example, I'll assume you have a directory (`data`) with some text files that you want to use as trusted content.
7373
This snippet will ingest the files, embed them, and create a vector store `index` that is ready for [retrieval](#retrieve-content).
7474

0 commit comments

Comments
 (0)