From 7f3f0d3f82041ff8fc0ff0cb812bfb76cd52e861 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 1 Sep 2026 22:21:48 -0700 Subject: [PATCH] test: annotate python parity for get_custom_llm_provider --- litellm-rust/crates/core/src/routing_utils/provider.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm-rust/crates/core/src/routing_utils/provider.rs b/litellm-rust/crates/core/src/routing_utils/provider.rs index 6333eedebfc..6d2ad2559e6 100644 --- a/litellm-rust/crates/core/src/routing_utils/provider.rs +++ b/litellm-rust/crates/core/src/routing_utils/provider.rs @@ -4,6 +4,7 @@ pub struct CustomLlmProvider<'a> { pub custom_llm_provider: &'a str, } +// python-parity: get_llm_provider pub fn get_custom_llm_provider<'a>( model: &'a str, custom_llm_provider: Option<&'a str>,