Fixed pre commit

This commit is contained in:
Enrico Zimuel 2025-11-20 14:34:04 +01:00
parent 7034637cac
commit df23e0c32f
No known key found for this signature in database
GPG key ID: 6CB203F6934A69F1
8 changed files with 28 additions and 14 deletions

View file

@ -89,15 +89,15 @@ See [Elasticsearch's documentation](https://www.elastic.co/docs/solutions/search
| Field | Type | Required | Default | Description |
|-------|------|----------|---------|-------------|
| `api_key` | `str \| None` | No | | The API key for the Elasticsearch instance |
| `hosts` | `str \| None` | No | localhost:9200 | The URL of the Elasticsearch instance |
| `persistence` | `llama_stack.core.storage.datatypes.KVStoreReference \| None` | No | | Config for KV store backend (SQLite only for now) |
| `elasticsearch_api_key` | `str \| None` | No | | The API key for the Elasticsearch instance |
| `elasticsearch_url` | `str \| None` | No | localhost:9200 | The URL of the Elasticsearch instance |
| `persistence` | `KVStoreReference \| None` | No | | Config for KV store backend (SQLite only for now) |
## Sample Configuration
```yaml
hosts: ${env.ELASTICSEARCH_API_KEY:=None}
api_key: ${env.ELASTICSEARCH_URL:=localhost:9200}
elasticsearch_url: ${env.ELASTICSEARCH_URL:=localhost:9200}
elasticsearch_api_key: ${env.ELASTICSEARCH_API_KEY:=}
persistence:
namespace: vector_io::elasticsearch
backend: kv_default