Skip to content

Commit 922d560

Browse files
authored
grammatical fixes on chat_stores.md (#12012)
1 parent ef54ac6 commit 922d560

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/module_guides/storing/chat_stores.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Chat Stores
22

3-
A chat store serves as a centralized interface to store your chat history. Chat history is unique to other storage formats, since the order of messages is important to maintining an overall conversation.
3+
A chat store serves as a centralized interface to store your chat history. Chat history is unique compared to other storage formats, since the order of messages is important for maintaining an overall conversation.
44

5-
Chat stores can be organize sequences of chat messages by keys (like `user_ids` or other unique identifiable strings), and handle `delete`, `insert`, and `get` operations.
5+
Chat stores can organize sequences of chat messages by keys (like `user_ids` or other unique identifiable strings), and handle `delete`, `insert`, and `get` operations.
66

77
## SimpleChatStore
88

9-
The most basic chat store is `SimpleChatStore`, which stores messages in memory and saves to/from disk, or can be serlized and stored somewhere else.
9+
The most basic chat store is `SimpleChatStore`, which stores messages in memory and can save to/from disk, or can be serialized and stored elsewhere.
1010

11-
Typically, you will insansiate a chat store and give it to a memory module. Memory modules that use chat stores will default to using `SimpleChatStore` if not provided.
11+
Typically, you will instantiate a chat store and give it to a memory module. Memory modules that use chat stores will default to using `SimpleChatStore` if not provided.
1212

1313
```python
1414
from llama_index.core.storage.chat_store import SimpleChatStore
@@ -49,7 +49,7 @@ loaded_chat_store = SimpleChatStore.parse_raw(chat_store_string)
4949

5050
## RedisChatStore
5151

52-
Using `RedisChatStore`, you can store your chat history remotely, without having to worry abouyt manually persisting and loading the chat history.
52+
Using `RedisChatStore`, you can store your chat history remotely, without having to worry about manually persisting and loading the chat history.
5353

5454
```python
5555
from llama_index.storage.chat_store.redis import RedisChatStore

0 commit comments

Comments
 (0)