Test MaxRouter directly in your browser. Enter your API key and start chatting.
from openai import OpenAI
client = OpenAI(
base_url="https://api.silom.cn/llm-api/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="gpt-5.4",
messages=[
{"role": "user", "content": "Hello!"}
]
)
Enter your API key and send a message to test the API.
Your API key is only used in this session and never stored.