mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-06-01 22:09:04 +02:00
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
"""Re-exports default upstream base URLs from the config provider catalog."""
|
|
|
|
from config.provider_catalog import (
|
|
CEREBRAS_DEFAULT_BASE,
|
|
CODESTRAL_DEFAULT_BASE,
|
|
DEEPSEEK_ANTHROPIC_DEFAULT_BASE,
|
|
DEEPSEEK_DEFAULT_BASE,
|
|
GEMINI_DEFAULT_BASE,
|
|
GROQ_DEFAULT_BASE,
|
|
KIMI_DEFAULT_BASE,
|
|
LLAMACPP_DEFAULT_BASE,
|
|
LMSTUDIO_DEFAULT_BASE,
|
|
MISTRAL_DEFAULT_BASE,
|
|
NVIDIA_NIM_DEFAULT_BASE,
|
|
OLLAMA_DEFAULT_BASE,
|
|
OPENCODE_DEFAULT_BASE,
|
|
OPENCODE_GO_DEFAULT_BASE,
|
|
OPENROUTER_DEFAULT_BASE,
|
|
WAFER_DEFAULT_BASE,
|
|
ZAI_DEFAULT_BASE,
|
|
)
|
|
|
|
__all__ = (
|
|
"CEREBRAS_DEFAULT_BASE",
|
|
"CODESTRAL_DEFAULT_BASE",
|
|
"DEEPSEEK_ANTHROPIC_DEFAULT_BASE",
|
|
"DEEPSEEK_DEFAULT_BASE",
|
|
"GEMINI_DEFAULT_BASE",
|
|
"GROQ_DEFAULT_BASE",
|
|
"KIMI_DEFAULT_BASE",
|
|
"LLAMACPP_DEFAULT_BASE",
|
|
"LMSTUDIO_DEFAULT_BASE",
|
|
"MISTRAL_DEFAULT_BASE",
|
|
"NVIDIA_NIM_DEFAULT_BASE",
|
|
"OLLAMA_DEFAULT_BASE",
|
|
"OPENCODE_DEFAULT_BASE",
|
|
"OPENCODE_GO_DEFAULT_BASE",
|
|
"OPENROUTER_DEFAULT_BASE",
|
|
"WAFER_DEFAULT_BASE",
|
|
"ZAI_DEFAULT_BASE",
|
|
)
|