fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
104 lines
3.5 KiB
Python
104 lines
3.5 KiB
Python
from typing import List, Optional
|
|
|
|
import httpx
|
|
|
|
import litellm
|
|
from litellm.llms.base_llm.base_utils import BaseLLMModelInfo
|
|
from litellm.secret_managers.main import get_secret_str
|
|
from litellm.types.llms.openai import AllMessageValues
|
|
from litellm.types.utils import ProviderSpecificModelInfo
|
|
|
|
|
|
class XAIModelInfo(BaseLLMModelInfo):
|
|
def get_provider_info(
|
|
self,
|
|
model: str,
|
|
) -> Optional[ProviderSpecificModelInfo]:
|
|
"""
|
|
Default values all models of this provider support.
|
|
"""
|
|
return {
|
|
"supports_web_search": True,
|
|
}
|
|
|
|
def validate_environment(
|
|
self,
|
|
headers: dict,
|
|
model: str,
|
|
messages: List[AllMessageValues],
|
|
optional_params: dict,
|
|
litellm_params: dict,
|
|
api_key: Optional[str] = None,
|
|
api_base: Optional[str] = None,
|
|
) -> dict:
|
|
if api_key is not None:
|
|
headers["Authorization"] = f"Bearer {api_key}"
|
|
|
|
# Ensure Content-Type is set to application/json
|
|
if "content-type" not in headers and "Content-Type" not in headers:
|
|
headers["Content-Type"] = "application/json"
|
|
|
|
return headers
|
|
|
|
@staticmethod
|
|
def get_api_base(api_base: Optional[str] = None) -> Optional[str]:
|
|
return api_base or get_secret_str("XAI_API_BASE") or "https://api.x.ai"
|
|
|
|
@staticmethod
|
|
def get_api_key(
|
|
api_key: Optional[str] = None,
|
|
legacy_generic_before_env: bool = False,
|
|
) -> Optional[str]:
|
|
"""
|
|
Resolve xAI API keys while preserving endpoint-specific legacy order.
|
|
|
|
Chat uses xai_key before XAI_API_KEY without adding a generic
|
|
litellm.api_key fallback. Responses and realtime historically
|
|
preferred litellm.api_key over XAI_API_KEY, so those paths opt into
|
|
the legacy order with legacy_generic_before_env=True. In both modes,
|
|
the provider-specific litellm.xai_key takes precedence over fallbacks.
|
|
"""
|
|
if legacy_generic_before_env:
|
|
return (
|
|
api_key
|
|
or litellm.xai_key
|
|
or litellm.api_key
|
|
or get_secret_str("XAI_API_KEY")
|
|
)
|
|
|
|
return api_key or litellm.xai_key or get_secret_str("XAI_API_KEY")
|
|
|
|
@staticmethod
|
|
def get_base_model(model: str) -> Optional[str]:
|
|
return model.replace("xai/", "")
|
|
|
|
def get_models(
|
|
self, api_key: Optional[str] = None, api_base: Optional[str] = None
|
|
) -> List[str]:
|
|
api_base = self.get_api_base(api_base)
|
|
api_key = self.get_api_key(api_key)
|
|
if api_base is None or api_key is None:
|
|
raise ValueError(
|
|
"XAI API base or key is not set. Set XAI_API_BASE and provide an xAI API key via api_key, litellm.xai_key, or XAI_API_KEY."
|
|
)
|
|
response = litellm.module_level_client.get(
|
|
url=f"{api_base}/v1/models",
|
|
headers={"Authorization": f"Bearer {api_key}"},
|
|
)
|
|
|
|
try:
|
|
response.raise_for_status()
|
|
except httpx.HTTPStatusError:
|
|
raise Exception(
|
|
f"Failed to fetch models from XAI. Status code: {response.status_code}, Response: {response.text}"
|
|
)
|
|
|
|
models = response.json()["data"]
|
|
|
|
litellm_model_names = []
|
|
for model in models:
|
|
stripped_model_name = model["id"]
|
|
litellm_model_name = "xai/" + stripped_model_name
|
|
litellm_model_names.append(litellm_model_name)
|
|
return litellm_model_names
|