Qwen 3.7 Flash

Model Information

Display Name: Qwen 3.7 Flash

API Model ID: qwen/qwen3.7-flash

Category: Image To Text

Description: Qwen 3.7 Flash is Alibaba's fast multimodal reasoning model. It reads text, images and video and is tuned for multimodal agents, visual coding, search and computer use — with strong object recognition and spatial understanding — at a fraction of the cost of the flagship line. **Key Features:** - 1M token context window - Up to 65K output tokens - Vision + video input (text output) - Thinking mode (on by default, can be turned off) - Function/tool calling and JSON mode - Streaming support **Best For:** - High-volume multimodal workloads - Visual agents, UI automation and document understanding - Long-context processing on a tight budget - Fast classification, extraction and routing

Context Window: 1,000,000 tokens

Max Output: 65,536 tokens

How to Use This Model

To use Qwen 3.7 Flash via the HInow.ai API, use the model ID: qwen/qwen3.7-flash

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "qwen/qwen3.7-flash",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "qwen/qwen3.7-flash",
  "prompt": "Your image description here"
}
              

Pricing

  • input: $0.90
  • output: $3.20

Available Parameters

  • temperature: Controls randomness (0-2). Default: 0.7 (Options: 0, 0.3, 0.5, 0.7, 1.0, 1.5, 2.0)
  • top_p: Nucleus sampling (0-1). Default: 0.9 (Options: 0.1, 0.5, 0.7, 0.9, 0.95, 1.0)
  • max_tokens: Max tokens to generate (1-65536) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536)
  • enable_thinking: Chain-of-thought reasoning. Default: on (streaming only) (Options: true, false)
  • response_format: Output format (Options: text, json_object)
  • seed: Deterministic sampling seed
  • presence_penalty: Penalizes repeated topics (-2 to 2). Default: 0 (Options: -2.0, -1.0, 0, 1.0, 2.0)
  • tools: Function/tool definitions for agentic workflows

Quick Reference

To use this model, set: "model": "qwen/qwen3.7-flash"

Featured: No

Documentation: https://hinow.ai/models/qwen/qwen3.7-flash

API Endpoint: https://api.hinow.ai/v1

Back to Models
Qwen 3.7 Flash

Qwen 3.7 Flash

qwen/qwen3.7-flash

$0.900 / $3.20
per 1M tokens (in/out)

About

Qwen 3.7 Flash is Alibaba's fast multimodal reasoning model. It reads text, images and video and is tuned for multimodal agents, visual coding, search and computer use — with strong object recognition and spatial understanding — at a fraction of the cost of the flagship line.

Key Features:

  • 1M token context window
  • Up to 65K output tokens
  • Vision + video input (text output)
  • Thinking mode (on by default, can be turned off)
  • Function/tool calling and JSON mode
  • Streaming support

Best For:

  • High-volume multimodal workloads
  • Visual agents, UI automation and document understanding
  • Long-context processing on a tight budget
  • Fast classification, extraction and routing

Capabilities

Image To TextText To Text
Context1000K tokens
Max Output66K tokens

Parameters

temperature

Controls randomness (0-2). Default: 0.7

00.30.50.71.01.52.0
top_p

Nucleus sampling (0-1). Default: 0.9

0.10.50.70.90.951.0
max_tokens

Max tokens to generate (1-65536)

2565121024204840968192163843276865536
enable_thinking

Chain-of-thought reasoning. Default: on (streaming only)

truefalse
response_format

Output format

textjson_object
seed

Deterministic sampling seed

presence_penalty

Penalizes repeated topics (-2 to 2). Default: 0

-2.0-1.001.02.0
tools

Function/tool definitions for agentic workflows

Code Examples

curl -X POST https://api.hinow.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "qwen/qwen3.7-flash",
    "messages": [
      {
        "role": "user",
        "content": [
          {"type": "text", "text": "Describe this image"},
          {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}}
        ]
      }
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "256",
      "enable_thinking": "true",
      "response_format": "text",
      "seed": "",
      "presence_penalty": "-2.0",
      "tools": ""
    }
  }'