mypy linting fixes 2

This commit is contained in:
ishaan-jaff 2023-08-18 11:16:31 -07:00
parent 15b1da9dc8
commit fbcb6d1c20
4 changed files with 14 additions and 14 deletions

View file

@ -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