mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
30 lines
713 B
Text
30 lines
713 B
Text
---
|
|
description: "Please refer to the remote provider documentation."
|
|
sidebar_label: Milvus
|
|
title: inline::milvus
|
|
---
|
|
|
|
# inline::milvus
|
|
|
|
## Description
|
|
|
|
|
|
Please refer to the remote provider documentation.
|
|
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `db_path` | `str` | No | | |
|
|
| `persistence` | `KVStoreReference` | No | | Config for KV store backend (SQLite only for now) |
|
|
| `consistency_level` | `str` | No | Strong | The consistency level of the Milvus server |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
db_path: ${env.MILVUS_DB_PATH:=~/.llama/dummy}/milvus.db
|
|
persistence:
|
|
namespace: vector_io::milvus
|
|
backend: kv_default
|
|
```
|