From 3053fedad29a9dc8d2452a54440d3426fd2e187c Mon Sep 17 00:00:00 2001 From: Tomu Hirata Date: Tue, 17 Feb 2026 15:21:55 +0900 Subject: [PATCH 1/2] Add Databricks to supported LLM providers for response schema Signed-off-by: Tomu Hirata --- litellm/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/utils.py b/litellm/utils.py index 0fd21f09919..9b82f5d3214 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -2408,6 +2408,7 @@ def supports_response_schema( litellm.LlmProviders.FIREWORKS_AI, litellm.LlmProviders.LM_STUDIO, litellm.LlmProviders.NEBIUS, + litellm.LlmProviders.DATABRICKS, ] if custom_llm_provider in PROVIDERS_GLOBALLY_SUPPORT_RESPONSE_SCHEMA: From 43ba7d0a073bf5a46ee661c765d4ea4713a5f607 Mon Sep 17 00:00:00 2001 From: Tomu Hirata Date: Tue, 17 Feb 2026 15:36:00 +0900 Subject: [PATCH 2/2] Add test case for Databricks Meta LLaMA 3.1 70B instruct model in content parsing tests Signed-off-by: Tomu Hirata --- tests/litellm_utils_tests/test_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/litellm_utils_tests/test_utils.py b/tests/litellm_utils_tests/test_utils.py index f585aadbfcb..b4e99ee3fa4 100644 --- a/tests/litellm_utils_tests/test_utils.py +++ b/tests/litellm_utils_tests/test_utils.py @@ -1065,6 +1065,7 @@ def test_parse_content_for_reasoning(content, expected_reasoning, expected_conte ("vertex_ai/gemini-1.5-pro", True), ("gemini/gemini-1.5-pro", True), ("predibase/llama3-8b-instruct", True), + ("databricks/databricks-meta-llama-3-1-70b-instruct", True), ("gpt-3.5-turbo", False), ("groq/llama-3.3-70b-versatile", False), ],