We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a108c commit 833bf1dCopy full SHA for 833bf1d
litellm/llms/ollama/completion/handler.py
@@ -52,7 +52,7 @@ async def ollama_aembeddings(
52
53
response = await litellm.module_level_aclient.post(url=url, json=data)
54
55
- response_json = await response.json()
+ response_json = response.json()
56
57
embeddings: List[List[float]] = response_json["embeddings"]
58
for idx, emb in enumerate(embeddings):
0 commit comments