mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
mypy linting fixes 2
This commit is contained in:
parent
2c7ffb7c75
commit
bb70a55c91
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