Merge branch 'main' into add-to-provider-gen

This commit is contained in:
Kelly Brown 2025-07-24 11:51:15 -04:00 committed by GitHub
commit ae9dda3665
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 687 additions and 218 deletions

View file

@ -46,11 +46,15 @@ See [Chroma's documentation](https://docs.trychroma.com/docs/overview/introducti
| Field | Type | Required | Default | Description |
|-------|------|----------|---------|-------------|
| `db_path` | `<class 'str'>` | No | PydanticUndefined | |
| `kvstore` | `utils.kvstore.config.RedisKVStoreConfig \| utils.kvstore.config.SqliteKVStoreConfig \| utils.kvstore.config.PostgresKVStoreConfig \| utils.kvstore.config.MongoDBKVStoreConfig` | No | sqlite | Config for KV store backend |
## Sample Configuration
```yaml
db_path: ${env.CHROMADB_PATH}
kvstore:
type: sqlite
db_path: ${env.SQLITE_STORE_DIR:=~/.llama/dummy}/chroma_inline_registry.db
```