mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
refactor(azure.py): fix linting errors
This commit is contained in:
parent
6f4707bbb3
commit
7c5fd5824b
2 changed files with 7 additions and 3 deletions
|
|
@ -181,9 +181,9 @@ class AzureChatCompletion(BaseLLM):
|
|||
def embedding(self,
|
||||
model: str,
|
||||
input: list,
|
||||
api_key: Optional[str] = None,
|
||||
api_base: Optional[str] = None,
|
||||
api_version: Optional[str] = None,
|
||||
api_key: str,
|
||||
api_base: str,
|
||||
api_version: str,
|
||||
logging_obj=None,
|
||||
model_response=None,
|
||||
optional_params=None,):
|
||||
|
|
|
|||
|
|
@ -16,10 +16,14 @@ class BaseLLM:
|
|||
|
||||
def completion(
|
||||
self,
|
||||
*args,
|
||||
**kwargs
|
||||
): # logic for parsing in - calling - parsing out model completion calls
|
||||
pass
|
||||
|
||||
def embedding(
|
||||
self,
|
||||
*args,
|
||||
**kwargs
|
||||
): # logic for parsing in - calling - parsing out model embedding calls
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue