fix: reverting the lancedb chnage

This commit is contained in:
chinu0609 2025-10-22 20:58:45 +05:30
parent 7b31b86f10
commit e6ab4bbeee

View file

@ -111,7 +111,6 @@ class OllamaEmbeddingEngine(EmbeddingEngine):
self.endpoint, json=payload, headers=headers, timeout=60.0
) as response:
data = await response.json()
print(data)
return data["embeddings"][0]
def get_vector_size(self) -> int: