From aee4afb327ff4f7be626a31cb85feaefa7ca38bb Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Fri, 10 Oct 2025 15:25:07 -0400 Subject: [PATCH] chore: Removing VectorDB Warning Signed-off-by: Francisco Javier Arceo --- llama_stack/core/routing_tables/vector_dbs.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/llama_stack/core/routing_tables/vector_dbs.py b/llama_stack/core/routing_tables/vector_dbs.py index 932bbdba8..995e0351d 100644 --- a/llama_stack/core/routing_tables/vector_dbs.py +++ b/llama_stack/core/routing_tables/vector_dbs.py @@ -70,9 +70,6 @@ class VectorDBsRoutingTable(CommonRoutingTableImpl, VectorDBs): raise ValueError(f"Model {embedding_model} does not have an embedding dimension") provider = self.impls_by_provider_id[provider_id] - logger.warning( - "VectorDB is being deprecated in future releases in favor of VectorStore. Please migrate your usage accordingly." - ) vector_store = await provider.openai_create_vector_store( name=vector_db_name or vector_db_id, embedding_model=embedding_model,