mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-28 04:04:31 +00:00
fix type errors
This commit is contained in:
parent
4d1a653fea
commit
1996f4b29e
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class OpenAIFineTuningAPI(BaseLLM):
|
|||
verbose_logger.debug(
|
||||
"creating fine tuning job, args= %s", create_fine_tuning_job_data
|
||||
)
|
||||
response = openai_client.fine_tuning.jobs.create(**create_fine_tuning_job_data)
|
||||
response = openai_client.fine_tuning.jobs.create(**create_fine_tuning_job_data) # type: ignore
|
||||
return response
|
||||
|
||||
async def acancel_fine_tuning_job(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue