diff --git a/litellm/llms/morph/chat/transformation.py b/litellm/llms/morph/chat/transformation.py index f37ed8e45e..93bd7e16ae 100644 --- a/litellm/llms/morph/chat/transformation.py +++ b/litellm/llms/morph/chat/transformation.py @@ -38,9 +38,3 @@ class MorphChatConfig(OpenAILikeChatConfig): "model", "stream", ] - - def pre_call(self, messages: list, model: str, api_key: str, api_base: str): - """ - Hook for any pre-processing before the API call. - """ - return \ No newline at end of file diff --git a/litellm/proxy/proxy_config.yaml b/litellm/proxy/proxy_config.yaml index aa63bc7276..9effb01e1e 100644 --- a/litellm/proxy/proxy_config.yaml +++ b/litellm/proxy/proxy_config.yaml @@ -20,14 +20,3 @@ litellm_settings: callbacks: ["datadog_llm_observability"] cache: true - - model_name: gemini/* - litellm_params: - model: gemini/* - -litellm_settings: - callbacks: ["datadog_llm_observability"] - -mcp_servers: - # HTTP Streamable Server - deepwiki_mcp: - url: "https://mcp.deepwiki.com/mcp" diff --git a/tests/llm_translation/test_morph.py b/tests/llm_translation/test_morph.py index 7d2568a0a7..3801e51000 100644 --- a/tests/llm_translation/test_morph.py +++ b/tests/llm_translation/test_morph.py @@ -90,11 +90,6 @@ def test_morph_supported_params(): "messages", "model", "stream", - "temperature", - "max_tokens", - "tools", - "tool_choice", - "response_format", ] assert all(param in supported_params for param in expected_params)