Merge pull request #5116 from thiswillbeyourgithub/fix_ollama_argument_order
fix: wrong order of arguments for ollama
This commit is contained in:
commit
a6bf763dd9
@ -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…
Reference in New Issue
Block a user