mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
mypy linting fixes 2
This commit is contained in:
parent
15b1da9dc8
commit
fbcb6d1c20
4 changed files with 14 additions and 14 deletions
|
@ -2,11 +2,11 @@
|
|||
|
||||
|
||||
class BaseLLM:
|
||||
def validate_environment(): # set up the environment required to run the model
|
||||
def validate_environment(self): # set up the environment required to run the model
|
||||
pass
|
||||
|
||||
def completion(): # logic for parsing in - calling - parsing out model completion calls
|
||||
def completion(self): # logic for parsing in - calling - parsing out model completion calls
|
||||
pass
|
||||
|
||||
def embedding(): # logic for parsing in - calling - parsing out model embedding calls
|
||||
def embedding(self): # logic for parsing in - calling - parsing out model embedding calls
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue