Back to Models
qwen logo
qwen/qwen3-7-max

Qwen3.7 Max

Qwen3.7-Max is the flagship model in Alibaba's Qwen3.7 series. It supports text input and output and is designed for agent-centric workloads, with particular strengths in coding, office and productivity tasks,...

5/21/2026
1,000,000 tokens
Input: ¥263.5825/M
Output: ¥790.7475/M
Specifications

Modalities

Input
text
Output
text

Supported Parameters

include_reasoning
logprobs
max_tokens
presence_penalty
reasoning
response_format
seed
structured_outputs
temperature
tool_choice
tools
top_logprobs
top_p

Max Output Tokens

65,536
Code Examples
curl https://api.fastmetal.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen3.7-max",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

How Qwen3.7 Max actually answers

Real responses to our standard prompts, recorded on FastMetal.

Count the number of 'r's in 'strawberry'

Count the number of 'r's in 'strawberry'. Explain your reasoning step by step.

To count the number of 'r's in the word "strawberry", let's break the word down letter by letter from left to right: 1. **s** - not an 'r' 2. **t** - not an 'r' 3. **r** - This is the **1st** 'r' 4. **a** - not an 'r' 5. **w** - not an 'r' 6. **b** - not an 'r' 7. **e** - not an 'r' 8. **r** - This is the **2nd** 'r' 9. **r** - This is the **3rd** 'r' 10. **y** - not an 'r' By examining each character individually, we can see that the letter 'r' appears in the 3rd, 8th, and 9th positions. Therefore, there are **3** 'r's in "strawberry".
15.1s response842 output tokens
Debug This Error

I'm getting the following error in my Node.js application: TypeError: Cannot read properties of undefined (reading 'map') at UserList (/app/components/UserList.js:12:25) at renderWithHooks (/app/node_modules/rea…

This error occurs because the `users` prop being passed to your `UserList` component is **`undefined`** at the time React tries to render it. JavaScript cannot call the `.map()` method on `undefined`, which throws the error. This usually happens for one of three reasons: 1. **Asynchronous Data Fetching:** The parent component is fetching `users` from an API. On the *initial render*, the data hasn't arrived yet, so the variable is `undefined`. 2. **Missing Prop:** The parent component forgot to pass the `users` prop (e.g., `<UserList />` instead of `<UserList users={myUsers} />`). 3. **Incorrect State Initialization:** The parent component initialized its state as `undefined` or `null` inste…
34.9s response1851 output tokens
Code Review

Please review the following Python function and suggest improvements for readability, performance, and best practices: def get_data(url, retries=3): import requests import time for i in range(retries):…

Here is a comprehensive review of your function, broken down by readability, performance, and best practices, followed by a refactored version. ### 1. Readability & Style (PEP 8) * **Imports inside the function:** Imports should generally be placed at the top of the file, not inside the function. This makes dependencies clear and avoids slight overhead on every function call. * **`item["active"] == True`:** In Python, explicitly comparing to `True` is discouraged (PEP 8). You should just use `if item.get("active"):`. Using `.get()` also prevents `KeyError` if the key is missing. * **Manual List Building:** The `for` loop with `.append()` can be replaced with a much cleaner and faster **list…
58.3s response3301 output tokens

Compare these answers side by side with other models →

Try Qwen3.7 Max right now

Qwen3.7 Max is available on FastMetal through one API key. Start in the browser, or call it from the OpenAI SDK.