🤖 Qwen 3 Max API

✅ Service is running

通义千问 Qwen 3 Max 文本对话 API

📚 API Endpoints

GET /health

健康检查端点

curl http://your-domain/health

POST /chat/completions

OpenAI 兼容格式的聊天接口

curl -X POST http://your-domain/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [
      {"role": "user", "content": "你好"}
    ]
  }'

POST /chat

简化版对话接口

curl -X POST "http://your-domain/chat?question=你好"

📖 Documentation