Qwen3.8-Max-Preview - Full Parameter Documentation
🚧 This model is not yet available, stay tuned
- Call Qwen3.8-Max-Preview using the OpenAI Chat Completions protocol
- Multi-turn conversation: supports single-turn or multi-turn contextual conversations
- System prompt: set the AI’s role and behavior via a
role=systemmessage - Multimodal input: pass a content part array in
content, supportingtext/image_url/input_audio/video_url - Context caching: add
cache_controlon a content part to declare explicit caching; seeusage.prompt_tokens_detailsin the response for hit details - Thinking mode: enabled with
enable_thinking=true, thinking content returned throughreasoning_content - Streaming output: when
stream=true, returned chunk by chunk via SSE
https://direct.evolink.ai, which offers better support for text models and long connections. https://api.evolink.ai is the primary multimodal endpoint; use it when your request includes image / audio / video input.Authorizations
##All APIs require Bearer Token authentication##
Get API Key:
Visit API Key Management Page to get your API Key
Add to request header:
Body
Chat model name
qwen3.8-max-preview "qwen3.8-max-preview"
List of conversation messages, supporting multi-turn conversations. Messages from different roles (system / user / assistant / tool) have different field structures; select the corresponding role to view details.
- System Message
- User Message
- Assistant Message
- Tool Message
Whether to enable deep thinking
true: the model outputs its thinking process, returned throughreasoning_contentfalse(default): does not output the thinking process
Note: some models require this to be explicitly set to
trueto return thinking content in non-streaming calls.
Sampling temperature, controls output randomness. Lower values are more deterministic, higher values more diverse. Range [0, 2]. It is recommended not to adjust temperature and top_p at the same time.
0 <= x <= 2Nucleus Sampling parameter, samples from the tokens within the top cumulative probability. Range (0, 1]. It is recommended not to adjust temperature and top_p at the same time.
0 <= x <= 1Upper limit on the length of generated content (in tokens), including the chain of thought and the answer. Recommended for thinking models. The default and maximum values are both the model's maximum output length; once exceeded, generation stops early with finish_reason=length.
Legacy generation length limit parameter.
Deprecated: new integrations should use
max_completion_tokensinstead. This parameter only limits the answer portion (excluding the chain of thought).
Whether to return the response in a streaming manner.
true: returned chunk by chunk via SSE (Server-Sent Events)false(default): returns the full response at once
Streaming response options, effective only when stream=true.
List of tool definitions for Function Calling. Each tool must define a name, description, and parameter schema.
Response
Conversation generated successfully