mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-05-20 09:02:38 +00:00
29 lines
750 B
Python
29 lines
750 B
Python
"""Re-exports default upstream base URLs from the config provider catalog."""
|
|
|
|
from config.provider_catalog import (
|
|
DEEPSEEK_ANTHROPIC_DEFAULT_BASE,
|
|
DEEPSEEK_DEFAULT_BASE,
|
|
KIMI_DEFAULT_BASE,
|
|
LLAMACPP_DEFAULT_BASE,
|
|
LMSTUDIO_DEFAULT_BASE,
|
|
NVIDIA_NIM_DEFAULT_BASE,
|
|
OLLAMA_DEFAULT_BASE,
|
|
OPENCODE_DEFAULT_BASE,
|
|
OPENROUTER_DEFAULT_BASE,
|
|
WAFER_DEFAULT_BASE,
|
|
ZAI_DEFAULT_BASE,
|
|
)
|
|
|
|
__all__ = (
|
|
"DEEPSEEK_ANTHROPIC_DEFAULT_BASE",
|
|
"DEEPSEEK_DEFAULT_BASE",
|
|
"KIMI_DEFAULT_BASE",
|
|
"LLAMACPP_DEFAULT_BASE",
|
|
"LMSTUDIO_DEFAULT_BASE",
|
|
"NVIDIA_NIM_DEFAULT_BASE",
|
|
"OLLAMA_DEFAULT_BASE",
|
|
"OPENCODE_DEFAULT_BASE",
|
|
"OPENROUTER_DEFAULT_BASE",
|
|
"WAFER_DEFAULT_BASE",
|
|
"ZAI_DEFAULT_BASE",
|
|
)
|