mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
Add remote Weaviate in precomputed embeddings test
This commit is contained in:
parent
65a2f09a6f
commit
c630a646e3
1 changed files with 2 additions and 1 deletions
|
@ -138,8 +138,9 @@ def test_insert_chunks(client_with_empty_registry, embedding_model_id, embedding
|
||||||
def test_insert_chunks_with_precomputed_embeddings(client_with_empty_registry, embedding_model_id, embedding_dimension):
|
def test_insert_chunks_with_precomputed_embeddings(client_with_empty_registry, embedding_model_id, embedding_dimension):
|
||||||
vector_io_provider_params_dict = {
|
vector_io_provider_params_dict = {
|
||||||
"inline::milvus": {"score_threshold": -1.0},
|
"inline::milvus": {"score_threshold": -1.0},
|
||||||
"remote::qdrant": {"score_threshold": -1.0},
|
|
||||||
"inline::qdrant": {"score_threshold": -1.0},
|
"inline::qdrant": {"score_threshold": -1.0},
|
||||||
|
"remote::qdrant": {"score_threshold": -1.0},
|
||||||
|
"remote::weaviate": {"score_threshold": -1.0},
|
||||||
}
|
}
|
||||||
vector_db_name = "test_precomputed_embeddings_db"
|
vector_db_name = "test_precomputed_embeddings_db"
|
||||||
register_response = client_with_empty_registry.vector_dbs.register(
|
register_response = client_with_empty_registry.vector_dbs.register(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue