Skip to content

Commit 0ec85d0

Browse files
committed
docs: update index.md to v0.12.0
Updates: - Version badge: 0.9.0 -> 0.12.0 - Memory Systems card: updated to v0.10.0 API - Shows chat_memory + knowledge_memory separation - Updated code example
1 parent e6f6721 commit 0ec85d0

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

docs/index.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<p align="center">
88
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8+-blue.svg" alt="Python 3.8+"></a>
99
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
10-
<a href="https://github.com/marcosf63/react-agent-framework"><img src="https://img.shields.io/badge/version-0.9.0-green.svg" alt="Version"></a>
10+
<a href="https://github.com/marcosf63/react-agent-framework"><img src="https://img.shields.io/badge/version-0.12.0-green.svg" alt="Version"></a>
1111
</p>
1212

1313
<p align="center">
@@ -53,14 +53,17 @@ This cycle continues until the agent has enough information to provide a complet
5353
agent.use_tools("search.*", "filesystem.*")
5454
```
5555

56-
- :material-brain: __Memory Systems__
56+
- :material-brain: __Memory Systems__ (v0.10.0+)
5757

5858
---
5959

60-
Simple, ChromaDB, and FAISS memory backends
60+
Chat + Knowledge memory separation for better performance
6161

6262
```python
63-
agent = ReactAgent(memory=ChromaMemory())
63+
agent = ReactAgent(
64+
chat_memory=SQLiteChatMemory("./chat.db"),
65+
knowledge_memory=ChromaKnowledgeMemory("./kb")
66+
)
6467
```
6568

6669
- :material-target: __Objectives System__

0 commit comments

Comments
 (0)