Add remote Weaviate in precomputed embeddings test

This commit is contained in:
ChristianZaccaria 2025-08-29 18:39:54 +01:00
parent 65a2f09a6f
commit c630a646e3

View file

@ -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(