Now on VeniceLLMReasoningOpen weights

Qwen 3.8 Flash

Alibaba's cost-efficient multimodal reasoning model — 1M context, open weights, and a preview of Qwen4 architecture at $0.14/$0.49 per million tokens.

For agents
curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-3-8-flash",
    "messages": [{ "role": "user", "content": "Build without permission." }]
  }'
Model IDqwen-3-8-flash
Maker
Alibaba Cloud
Context
1,000K tokens
Reasoning
Supported
Privacy
Anonymized

Overview

What is Qwen 3.8 Flash

Qwen 3.8 Flash is Alibaba's fast, low-cost multimodal reasoning model in the Qwen 3.8 family, released in August 2026. It features a next-gen MoE architecture with 125B total parameters (6B activated per token), 1M-token context, and support for vision, function calling, web search, and code. It is open-weight under the Qwen Community License.

Using it anonymously on Venice

On Venice, Qwen 3.8 Flash runs with anonymized privacy — your prompts are never stored or profiled. You get full access to its reasoning, vision, and tool use capabilities without surveillance. The model’s open weights and uncensored nature on Venice enable permissionless innovation, ideal for builders who value sovereignty and cost efficiency.

AnonymizedNo prompt trainingTEE · hardware enclaveEnd-to-end encrypted

Agent quickstart

Three calls, copied straight out

The API is OpenAI-compatible: change the base URL and the model id and existing client code works unchanged.

Streaming chat

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-3-8-flash",
    "stream": true,
    "messages": [{ "role": "user", "content": "Draft the release note." }]
  }'

Tool calling

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-3-8-flash",
    "messages": [{ "role": "user", "content": "Find the rate limits." }],
    "tools": [{
      "type": "function",
      "function": {
        "name": "search_docs",
        "description": "Search the API documentation.",
        "parameters": {
          "type": "object",
          "properties": { "query": { "type": "string" } },
          "required": ["query"]
        }
      }
    }],
    "tool_choice": "auto"
  }'

Python SDK

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["VENICE_API_KEY"],
    base_url="https://api.venice.ai/api/v1",
)

resp = client.chat.completions.create(
    model="qwen-3-8-flash",
    messages=[{"role": "user", "content": "Build without permission."}],
)
print(resp.choices[0].message.content)

Specifications

Datasheet

Maker
Alibaba Cloud
Open weights
No
License
Qwen Community License 1.0
Context window
1,000K tokens
Released
August 26, 2026
Architecture
Sparse Mixture-of-Experts (MoE) with GDN + QSA hybrid attention, Gated Residual, N-gram Embedding
Parameters
125B total, 6B activated per token
Max output
128K tokens
Capabilities
Vision, Function calling, Reasoning, Web search, Code-optimized
Privacy on Venice
Anonymized — prompts not stored
Available on Venice since
Sep 2026

Assessment

Strengths and limitations

Strengths
  • Extremely cost-efficient inference due to sparse activation (6B active params per token out of 125B total).
  • 1M-token context window enables long-horizon reasoning, document analysis, and complex agentic workflows.
  • Multimodal understanding: accepts text, images, and video input with native vision capabilities.
  • Strong agentic coding performance: surpasses Claude Opus 4.6 on SWE-bench Pro and DeepSWE.
  • Open weights under a permissive license allow self-hosting, fine-tuning, and derivative works with minimal restrictions.
Limitations
  • Intentionally under-trained as a research preview of Qwen4, so may lack polish on nuanced or creative tasks.
  • Verbose output can increase token usage and cost, especially in production agents.
  • Qwen Community License requires attribution for large-scale commercial services (>100M MAU or $20M monthly revenue).
  • Not fully uncensored: content moderation policies apply in the hosted API version.

Use cases

What it is good for

  1. 01Long-context code generation and debugging with full repository context.
  2. 02Multimodal agents that process screenshots, documents, and video for automation.
  3. 03Cost-sensitive AI applications requiring high throughput and low latency.
  4. 04Office automation and professional task orchestration across legal, finance, and design.
  5. 05Open research and commercial products leveraging open-weight models with strong reasoning.

Prompting

Getting better results

Use explicit step-by-step reasoning in your prompts to leverage its strong logical planning.

Include image and video references directly in the input for multimodal tasks.

Leverage function calling to integrate external tools or APIs for real-world actions.

Break down complex tasks into sub-goals to stay within effective reasoning depth.

Use web search when up-to-date information is required beyond training data.

Keep output constraints clear (e.g., 'respond in under 200 tokens') to reduce verbosity.

Alternatives

How it compares

ModelBest forContextOpen weightsPrice (Venice)
Qwen 3.8 FlashCost-efficient multimodal agents1M tokensNo$0.14 in · $0.49 out / 1M
DeepSeek V4 Flash 0731Fast coding agents1M tokensYes$0.17 in · $0.35 out / 1M
Google Gemma 4 31B InstructSmall open model fine-tuning256K tokensYes$0.12 in · $0.36 out / 1M
Claude Opus 5High-intelligence reasoning1M tokensNo$6 in · $30 out / 1M

Choose Qwen 3.8 Flash when you need open, multimodal, cost-efficient agents with full 1M context — ideal for coding, office automation, and long-horizon reasoning where sovereignty and low cost matter.

Pricing

What it costs on Venice

Billed per token on Venice: $0.14 per 1M input tokens and $0.49 per 1M output tokens.

Input / 1M tokens
$0.14
Per 1M tokens
Output / 1M tokens
$0.49
Per 1M tokens
Cached input / 1M
$0.01
Per 1M tokens

New Venice accounts include a free daily allowance and 500 welcome credits — no credit card required.

Getting a key

From nothing to a first call

  1. 01

    Create a key in API settings. Nothing else is required to start.

  2. 02

    Export it as VENICE_API_KEY so the snippets above run unedited.

  3. 03

    Point an existing OpenAI client at https://api.venice.ai/api/v1. The scheme is part of the value: an OpenAI client given a bare host does not resolve it.

  4. 04

    Pass qwen-3-8-flash as the model and send the request.

FAQ

Frequently asked questions

Qwen 3.8 Flash is Alibaba's low-cost, multimodal reasoning model released in August 2026. It features a 125B-parameter MoE architecture with only 6B activated per token, 1M context, and support for vision, code, and tools. It is a preview of the upcoming Qwen4 architecture.

On Venice, Qwen 3.8 Flash costs $0.14 per 1M input tokens and $0.49 per 1M output tokens. Cached input is even cheaper at $0.01 per 1M tokens, making repeated queries highly efficient.

It is not open source but open-weight under the Qwen Community License 1.0. You can use, modify, fine-tune, and deploy it freely, including commercially, with attribution required for very large-scale services.

Yes. Qwen 3.8 Flash supports multimodal input including images and video. It can reason over visual content, extract text, interpret charts, and support agent workflows based on screenshots or video.

It supports a full 1,000,000 (1M) tokens of context, enabling long-document analysis, full-codebase reasoning, and complex multi-step agent planning without summarization loss.

Qwen 3.8 Flash is far cheaper and open-weight, excelling in coding, office automation, and multimodal tasks. Claude Opus 5 is stronger on creative reasoning and nuanced instruction-following but costs over 40x more and is closed. Choose based on budget and openness needs.

Yes. It supports function calling and tool use, allowing it to interact with APIs, databases, and external systems as part of autonomous agent workflows.

Use Qwen 3.8 Flash anonymously

One key, free to start, no credit card.

Start chatGet an API key