WIP: test check with prints

This commit is contained in:
Lorenze Jay
2025-01-27 12:24:13 -08:00
parent adec0892fa
commit 1cc9c981e4
9 changed files with 76 additions and 51 deletions

View File

@@ -43,7 +43,10 @@ class EmbeddingConfigurator:
raise Exception(
f"Unsupported embedding provider: {provider}, supported providers: {list(self.embedding_functions.keys())}"
)
print(
"self.embedding_functions[provider](config, model_name)",
self.embedding_functions[provider](config, model_name),
)
return self.embedding_functions[provider](config, model_name)
@staticmethod