mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
fix type errors
This commit is contained in:
parent
6abc49c611
commit
f18827cbc0
3 changed files with 11 additions and 31 deletions
|
@ -34,7 +34,7 @@ openai_fine_tuning_instance = OpenAIFineTuningAPI()
|
|||
async def acreate_fine_tuning_job(
|
||||
model: str,
|
||||
training_file: str,
|
||||
hyperparameters: Optional[Hyperparameters] = {},
|
||||
hyperparameters: Optional[Hyperparameters] = {}, # type: ignore
|
||||
suffix: Optional[str] = None,
|
||||
validation_file: Optional[str] = None,
|
||||
integrations: Optional[List[str]] = None,
|
||||
|
@ -84,7 +84,7 @@ async def acreate_fine_tuning_job(
|
|||
def create_fine_tuning_job(
|
||||
model: str,
|
||||
training_file: str,
|
||||
hyperparameters: Optional[Hyperparameters] = {},
|
||||
hyperparameters: Optional[Hyperparameters] = {}, # type: ignore
|
||||
suffix: Optional[str] = None,
|
||||
validation_file: Optional[str] = None,
|
||||
integrations: Optional[List[str]] = None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue