forked from phoenix-oss/llama-stack-mirror
This PR adds support for Qdrant - https://qdrant.tech/ to be used as a vector memory. I've unit-tested the methods to confirm that they work as intended. To run Qdrant ``` docker run -p 6333:6333 qdrant/qdrant ```
29 lines
817 B
YAML
29 lines
817 B
YAML
providers:
|
|
- provider_id: test-faiss
|
|
provider_type: meta-reference
|
|
config: {}
|
|
- provider_id: test-chromadb
|
|
provider_type: remote::chromadb
|
|
config:
|
|
host: localhost
|
|
port: 6001
|
|
- provider_id: test-remote
|
|
provider_type: remote
|
|
config:
|
|
host: localhost
|
|
port: 7002
|
|
- provider_id: test-weaviate
|
|
provider_type: remote::weaviate
|
|
config: {}
|
|
- provider_id: test-qdrant
|
|
provider_type: remote::qdrant
|
|
config:
|
|
host: localhost
|
|
port: 6333
|
|
# if a provider needs private keys from the client, they use the
|
|
# "get_request_provider_data" function (see distribution/request_headers.py)
|
|
# this is a place to provide such data.
|
|
provider_data:
|
|
"test-weaviate":
|
|
weaviate_api_key: 0xdeadbeefputrealapikeyhere
|
|
weaviate_cluster_url: http://foobarbaz
|