From 0db5c991d43f7e117ec714bdd9b53a488d5d83df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elijas=20Dap=C5=A1auskas?= <4084885+Elijas@users.noreply.github.com> Date: Sat, 3 May 2025 02:10:57 +0300 Subject: [PATCH] fix: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. (#9372) --- litellm/types/llms/openai.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/types/llms/openai.py b/litellm/types/llms/openai.py index bf21bc1ed78..8e79117f24b 100644 --- a/litellm/types/llms/openai.py +++ b/litellm/types/llms/openai.py @@ -876,8 +876,7 @@ class FineTuningJobCreate(BaseModel): class LiteLLMFineTuningJobCreate(FineTuningJobCreate): custom_llm_provider: Literal["openai", "azure", "vertex_ai"] - class Config: - extra = "allow" # This allows the model to accept additional fields + model_config = {"extra": "allow"} # This allows the model to accept additional fields AllEmbeddingInputValues = Union[str, List[str], List[int], List[List[int]]]