Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0b9d6bc

Browse files
committedMar 17, 2025
Update the Standard endpoint interface and simplify it
1 parent 161dba1 commit 0b9d6bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎edenai_apis/llmengine/llm_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ def completion(
834834
if user is not None:
835835
completion_params["user"] = user
836836

837-
completion_params = completion_params | kwargs
837+
completion_params = completion_params
838838
call_params = self._prepare_args(**completion_params)
839839
response = self.completion_client.completion(**call_params, **kwargs)
840840
response = ResponseModel.model_validate(response)

0 commit comments

Comments
 (0)
Please sign in to comment.