mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
fix linting errors
This commit is contained in:
parent
e626f5c7d6
commit
02e552e8f8
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ async def list_fine_tuning_jobs(
|
|||
custom_llm_provider: Literal["openai", "azure"],
|
||||
after: Optional[str] = None,
|
||||
limit: Optional[int] = None,
|
||||
user_api_key_dict: dict = Depends(user_api_key_auth),
|
||||
user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth),
|
||||
):
|
||||
"""
|
||||
Lists fine-tuning jobs for the organization.
|
||||
|
@ -316,7 +316,7 @@ async def retrieve_fine_tuning_job(
|
|||
request: Request,
|
||||
fastapi_response: Response,
|
||||
fine_tuning_job_id: str,
|
||||
user_api_key_dict: dict = Depends(user_api_key_auth),
|
||||
user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth),
|
||||
):
|
||||
"""
|
||||
Cancel a fine-tuning job.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue