fix(core): forward LiteLLM embedding dimensions

Signed-off-by: phernandez <paul@basicmachines.co>
This commit is contained in:
phernandez
2026-05-28 19:33:31 -05:00
parent a758657537
commit 8270405a1c
2 changed files with 15 additions and 0 deletions
@@ -119,6 +119,7 @@ class LiteLLMEmbeddingProvider(EmbeddingProvider):
params: dict[str, Any] = {
"model": self.model_name,
"input": batch,
"dimensions": self.dimensions,
"drop_params": True,
"timeout": self._timeout,
}