From e1696bf4262f4d8dbb2569bf099ed2c1992330a3 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 31 Jul 2024 19:07:37 -0700 Subject: [PATCH] fix(_types.py): fix finetuning endpoints --- litellm/proxy/_types.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 4a2542614af..e9d3c62cc1f 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -210,9 +210,9 @@ class LiteLLMRoutes(enum.Enum): "/files/{file_id}/content", # fine_tuning "/fine_tuning/jobs", - "v1/fine_tuning/jobs", - "/fine_tuning/jobs/{fine_tuning_job_id}/cancel" - "/v1/fine_tuning/jobs/{fine_tuning_job_id}/cancel" + "/v1/fine_tuning/jobs", + "/fine_tuning/jobs/{fine_tuning_job_id}/cancel", + "/v1/fine_tuning/jobs/{fine_tuning_job_id}/cancel", # assistants-related routes "/assistants", "/v1/assistants",