From 7d06b77fd91c516dfee7b4ba1e8f0fc0893d1a56 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 31 Jul 2024 16:19:00 -0700 Subject: [PATCH] add ft jobs in list of allowed routes --- litellm/proxy/_types.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 53fed823e..82e78e0d7 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -210,6 +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" # assistants-related routes "/assistants", "/v1/assistants",