fix morph api tests

This commit is contained in:
Ishaan Jaff
2025-07-22 18:44:44 -07:00
parent bd8b21e700
commit c21dc46a33
3 changed files with 0 additions and 22 deletions
@@ -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
-11
View File
@@ -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"
-5
View File
@@ -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)