qwen3-vl-plus.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "model_code": "qwen3-vl-plus",
  3. "model_intro": "Qwen3系列视觉理解模型,实现思考模式和非思考模式的有效融合,视觉智能能力在OS World等公开测试集上达到世界顶尖水平。此版本在视觉coding、空间感知、多模态思考等方向全面升级;视觉感知与识别能力大幅提升,支持超长视频理解。该模型版本功能等同于快照模型 qwen3-vl-plus-2025-12-19。",
  4. "model_tags": ["Qwen3", "视觉理解", "深度思考"],
  5. "model_capabilities": {
  6. "input_modalities": ["text", "image", "video"],
  7. "output_modalities": ["text"],
  8. "features": {
  9. "model_experience": true,
  10. "function_calling": true,
  11. "structured_output": true,
  12. "web_search": false,
  13. "prefix_continuation": true,
  14. "cache": true,
  15. "batch_inference": true,
  16. "model_tuning": false
  17. }
  18. },
  19. "model_pricing": [
  20. {
  21. "input_range": "输入<=32K",
  22. "unit": "元/千tokens",
  23. "input": 0.001,
  24. "input_cache_hit": 0.0002,
  25. "input_batch": 0.0005,
  26. "output": 0.01,
  27. "output_batch": 0.005
  28. },
  29. {
  30. "input_range": "32K<输入<=128K",
  31. "unit": "元/千tokens",
  32. "input": 0.0015,
  33. "input_cache_hit": 0.0003,
  34. "input_batch": 0.00075,
  35. "output": 0.015,
  36. "output_batch": 0.0075
  37. },
  38. {
  39. "input_range": "128K<输入<=256K",
  40. "unit": "元/千tokens",
  41. "input": 0.003,
  42. "input_cache_hit": 0.0006,
  43. "input_batch": 0.0015,
  44. "output": 0.03,
  45. "output_batch": 0.015
  46. }
  47. ],
  48. "model_limits": {
  49. "max_input_length": "254K",
  50. "max_input_length_thinking": "252K",
  51. "max_output_length": "32K",
  52. "max_output_length_thinking": "32K",
  53. "max_thinking_length": "80K",
  54. "rpm": 1200,
  55. "tpm": 1000000,
  56. "context_length": "256K"
  57. },
  58. "api_examples": {
  59. "curl": [
  60. "curl --location 'https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions' \\\n--header \"Authorization: Bearer $DASHSCOPE_API_KEY\" \\\n--header 'Content-Type: application/json' \\\n--data '{\n \"model\": \"qwen3-vl-plus\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": [\n {\n \"type\": \"image_url\",\n \"image_url\": {\n \"url\": \"https://img.alicdn.com/imgextra/i1/O1CN01gDEY8M1W114Hi3XcN_!!6000000002727-0-tps-1024-406.jpg\"\n }\n },\n {\n \"type\": \"text\",\n \"text\": \"请解答这道题\"\n }\n ]\n }\n ],\n \"stream\":true,\n \"stream_options\":{\"include_usage\":true},\n \"enable_thinking\": true,\n \"thinking_budget\": 81920\n}'"
  61. ]
  62. }
  63. }