Code Quality Improvement - remove file_apis, fine_tuning_apis from /llms (#7156)

* remove files_apis from /llms

* fix imports

* move fine tuning api from /llms

* fix importing fine tuning handlers

* fix imports
This commit is contained in:
Ishaan Jaff 2024-12-10 21:44:25 -08:00 committed by GitHub
parent 40a22eb4c6
commit 1d8956a3d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 5 additions and 6 deletions

View file

@ -18,9 +18,9 @@ import httpx
import litellm
from litellm._logging import verbose_logger
from litellm.llms.fine_tuning_apis.azure import AzureOpenAIFineTuningAPI
from litellm.llms.azure.fine_tuning.handler import AzureOpenAIFineTuningAPI
from litellm.llms.openai.fine_tuning.handler import OpenAIFineTuningAPI, FineTuningJob, FineTuningJobCreate
from litellm.llms.fine_tuning_apis.vertex_ai import VertexFineTuningAPI
from litellm.llms.vertex_ai_and_google_ai_studio.fine_tuning.handler import VertexFineTuningAPI
from litellm.secret_managers.main import get_secret_str
from litellm.types.llms.openai import Hyperparameters
from litellm.types.router import *