Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/patterns/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,21 @@ uv pip install "marvin[chroma]"
```
</CodeGroup>

Configure Chroma:
```python
import marvin
from marvin.memory.providers import chroma

provider = chroma.ChromaEphemeralMemory()
# or provider = chroma.ChromaPersistentMemory()
# or provider = chroma.ChromaCloudMemory()

memory = marvin.Memory(
key="knowledge",
provider=provider
)
```

### LanceDB

LanceDB provides a fast, efficient vector store with columnar storage:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
dev = [
"apispec",
"atproto",
"chromadb>=0.6.0",
"chromadb>=1.0.15",
"commentjson",
"copychat>=0.5.2",
"dirty-equals>=0.9.0",
Expand Down