This commit is contained in:
Ashwin Bharambe 2025-02-27 23:52:13 -08:00
parent 67d34cfbe3
commit a075dded3b
2 changed files with 2 additions and 1 deletions

View file

@ -128,6 +128,7 @@ async def resolve_impls(
specs = {} specs = {}
for provider in providers: for provider in providers:
if not provider.provider_id or provider.provider_id == "__disabled__": if not provider.provider_id or provider.provider_id == "__disabled__":
log.warning(f"Provider `{provider.provider_type}` for API `{api}` is disabled")
continue continue
if provider.provider_type not in provider_registry[api]: if provider.provider_type not in provider_registry[api]:

View file

@ -9,7 +9,7 @@ import random
import pytest import pytest
INLINE_VECTOR_DB_PROVIDERS = [ INLINE_VECTOR_DB_PROVIDERS = [
"chromadb", "faiss",
# TODO: add sqlite_vec to templates # TODO: add sqlite_vec to templates
# "sqlite_vec", # "sqlite_vec",
] ]