File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 33import requests
44from typing import Generator , List , Dict , Any
55from dataclasses import dataclass
6+ import os
67
78# --- CONSTANTS & CONFIGURATION ---
89# Note: Ensure your MockServer/Proxy is running on this port
10+ # GATEWAY_URL = "https://api-bailian.siliconflow.cn/api/v1/services/aigc/text-generation/generation"
911GATEWAY_URL = "http://localhost:8000/api/v1/services/aigc/text-generation/generation"
10- API_KEY = "sk-test-vector-integrity"
12+ # GATEWAY_URL = "http://localhost:8000/siliconflow/models/deepseek-ai/DeepSeek-R1"
13+ # GATEWAY_URL = "https://api-bailian.siliconflow.cn/siliconflow/models/deepseek-ai/DeepSeek-R1"
14+ API_KEY = os .getenv ("SILICONFLOW_API_KEY" , "test_api_key" )
1115
1216# Define the Tool Schema Vector
1317TOOL_VECTOR_WEATHER = [
You can’t perform that action at this time.
0 commit comments