Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/linux_mcp_server/gatekeeper/check_run_script.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import logging

import litellm

from litellm import Choices
from litellm import completion
from litellm import get_supported_openai_params
Expand All @@ -10,6 +12,13 @@
from linux_mcp_server.utils import StrEnum


# LiteLLM has bugs where the custom_llm_provider is not properly
# passed back into query functions for things like "model supports reasoning".
# Without this, each such failure spits out a debug message to the terminal
# https://github.com/BerriAI/litellm/issues/23879
litellm.suppress_debug_info = True


logger = logging.getLogger("linux-mcp-server")


Expand Down
Loading