mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Merge pull request #5116 from thiswillbeyourgithub/fix_ollama_argument_order
fix: wrong order of arguments for ollama
This commit is contained in:
commit
a6bf763dd9
1 changed files with 8 additions and 7 deletions
|
|
@ -601,12 +601,13 @@ def ollama_embeddings(
|
|||
):
|
||||
return asyncio.run(
|
||||
ollama_aembeddings(
|
||||
api_base,
|
||||
model,
|
||||
prompts,
|
||||
optional_params,
|
||||
logging_obj,
|
||||
model_response,
|
||||
encoding,
|
||||
api_base=api_base,
|
||||
model=model,
|
||||
prompts=prompts,
|
||||
model_response=model_response,
|
||||
optional_params=optional_params,
|
||||
logging_obj=logging_obj,
|
||||
encoding=encoding,
|
||||
)
|
||||
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue