format: fix ruff format

This commit is contained in:
Daulet Amirkhanov 2025-09-16 15:26:45 +01:00
parent 3a073ca462
commit cccb84ce90

View file

@ -94,11 +94,7 @@ class OllamaEmbeddingEngine(EmbeddingEngine):
"""
Internal method to call the Ollama embeddings endpoint for a single prompt.
"""
payload = {
"model": self.model,
"prompt": prompt,
"input": prompt
}
payload = {"model": self.model, "prompt": prompt, "input": prompt}
headers = {}
api_key = os.getenv("LLM_API_KEY")
if api_key: