|
2 | 2 |
|
3 | 3 | Production-ready agent memory in one line. No vector DB. No infrastructure. Just SQLite. |
4 | 4 |
|
5 | | -[](https://pypi.org/project/agentmem/) |
6 | | -[](https://pypi.org/project/agentmem/) |
| 5 | +[](https://pypi.org/project/quilmem/) |
| 6 | +[](https://pypi.org/project/quilmem/) |
7 | 7 | [](https://opensource.org/licenses/MIT) |
8 | 8 | [](https://github.com/thezenmonster/agentmem/actions) |
9 | 9 |
|
10 | 10 | ## Install |
11 | 11 |
|
12 | 12 | ```bash |
13 | | -pip install agentmem |
| 13 | +pip install quilmem |
14 | 14 | ``` |
15 | 15 |
|
16 | 16 | ## 30-Second Demo |
@@ -45,7 +45,7 @@ Current solutions are either too heavy (vector databases, API keys, cloud servic |
45 | 45 |
|
46 | 46 | | Feature | Mem0 | Engram | MCP Memory | agentmem | |
47 | 47 | |---|---|---|---|---| |
48 | | -| `pip install`, done | Needs API key or vector DB | Go binary | npm package | **Yes** | |
| 48 | +| `pip install quilmem` | Needs API key or vector DB | Go binary | npm package | **Yes** | |
49 | 49 | | Typed memories | Blob store | Key-value | Entities/relations | **6 types** | |
50 | 50 | | Python API | Yes | Go only | Node.js | **Yes** | |
51 | 51 | | Full-text search | Vector-based | FTS5 | No search | **FTS5** | |
@@ -116,7 +116,7 @@ agentmem serve |
116 | 116 | agentmem includes a built-in [Model Context Protocol](https://modelcontextprotocol.io/) server. Connect it to Claude Desktop, Cursor, or any MCP client. |
117 | 117 |
|
118 | 118 | ```bash |
119 | | -pip install agentmem[mcp] |
| 119 | +pip install quilmem[mcp] |
120 | 120 | ``` |
121 | 121 |
|
122 | 122 | **Claude Desktop config** (`claude_desktop_config.json`): |
@@ -225,7 +225,7 @@ agent_b.search("bug") # Only returns backend bugs |
225 | 225 | - **Token counting:** Defaults to `len(text) // 4` estimate. Install `tiktoken` for accuracy: |
226 | 226 |
|
227 | 227 | ```bash |
228 | | -pip install agentmem[tokens] |
| 228 | +pip install quilmem[tokens] |
229 | 229 | ``` |
230 | 230 |
|
231 | 231 | ```python |
|
0 commit comments