PYTHON
import http.clientimport json
conn = http.client.HTTPSConnection( "router.gaozhihui.com")payload = json.dumps({ "model": "anthropic/claude-opus-4.6", "stream": True, "messages": [ { "role": "user", "content": "你好" } ], "stream_options": { "include_usage": True }})
CURL
curl --location --request POST \ 'https://router.gaozhihui.com/api/v1/chat/completions' \ --header 'HTTP-Referer: https://www.postman.com' \ --header 'X-Title: Postman' \ --header 'Authorization: Bearer XoStHAI****5Bnw' \ --header 'Content-Type: application/json' \ --data-raw '{ "model": "anthropic/claude-opus-4.6", "messages": [{ "role": "user", "content": "你好" }] }'