Sovereign backup of all Hermes Agent configuration and data. Excludes: secrets, auth tokens, sessions, caches, code (separate repo). Tracked: - config.yaml (model, fallback chain, toolsets, display prefs) - SOUL.md (Timmy personality charter) - memories/ (persistent MEMORY.md + USER.md) - skills/ (371 files — full skill library) - cron/jobs.json (scheduled tasks) - channel_directory.json (platform channels) - hooks/ (custom hooks)
39 lines
771 B
Markdown
39 lines
771 B
Markdown
# Chroma Integration Guide
|
|
|
|
Integration with LangChain, LlamaIndex, and frameworks.
|
|
|
|
## LangChain
|
|
|
|
```python
|
|
from langchain_chroma import Chroma
|
|
from langchain_openai import OpenAIEmbeddings
|
|
|
|
vectorstore = Chroma.from_documents(
|
|
documents=docs,
|
|
embedding=OpenAIEmbeddings(),
|
|
persist_directory="./chroma_db"
|
|
)
|
|
|
|
# Query
|
|
results = vectorstore.similarity_search("query", k=3)
|
|
|
|
# As retriever
|
|
retriever = vectorstore.as_retriever()
|
|
```
|
|
|
|
## LlamaIndex
|
|
|
|
```python
|
|
from llama_index.vector_stores.chroma import ChromaVectorStore
|
|
import chromadb
|
|
|
|
db = chromadb.PersistentClient(path="./chroma_db")
|
|
collection = db.get_or_create_collection("docs")
|
|
|
|
vector_store = ChromaVectorStore(chroma_collection=collection)
|
|
```
|
|
|
|
## Resources
|
|
|
|
- **Docs**: https://docs.trychroma.com
|