👁️ Qwen VL Plus API

✅ Service is running

通义千问 Qwen VL Plus 视觉理解 API

📚 API Endpoints

GET /health

健康检查端点

curl http://your-domain/health

POST /analyze/url

通过图片 URL 分析图像

curl -X POST http://your-domain/analyze/url \
  -H "Content-Type: application/json" \
  -d '{
    "image_url": "https://example.com/image.jpg",
    "question": "这张图片里有什么?"
  }'

POST /analyze/file

上传图片文件进行分析

curl -X POST http://your-domain/analyze/file \
  -F "file=@image.jpg" \
  -F "question=这张图片里有什么?"

📖 Documentation