github-actions[bot]
🚀 Auto-deploy backend from GitHub (93e7c2a)
92bfe31
"""Backend service helpers for inference, logging, and integrations."""
from .inference_client import (
create_default_client,
InferenceRequest,
InferenceClient,
is_sequential_model,
get_current_runtime_config,
get_model_for_task,
set_runtime_model_profile,
set_runtime_model_override,
reset_runtime_overrides,
model_supports_thinking,
_MODEL_PROFILES,
)
from .ai_client import (
get_deepseek_client,
CHAT_MODEL,
REASONER_MODEL,
APIError,
RateLimitError,
APITimeoutError,
)
__all__ = [
"create_default_client",
"InferenceRequest",
"InferenceClient",
"is_sequential_model",
"get_current_runtime_config",
"get_model_for_task",
"set_runtime_model_profile",
"set_runtime_model_override",
"reset_runtime_overrides",
"model_supports_thinking",
"_MODEL_PROFILES",
"get_deepseek_client",
"CHAT_MODEL",
"REASONER_MODEL",
"APIError",
"RateLimitError",
"APITimeoutError",
]