Back to Models
Qwen3 Next 80B A3b Instruct
qwen/qwen3-next-80b-a3b-instruct
Qwen
Chat
Description
Qwen3 Next 80B A3b Instruct by Qwen. This model supports chat capabilities. Main use: Chat, Function Calling. Variant: Instruct.
Specifications
- Context Length:
- 262144
- Variant:
- Instruct
- Parameters:
- 80B
- Input Modalities:
- Text
- Output Modalities:
- Text
- Main Use:
- Chat, Function Calling
Pricing
- Input Cost:
- 0.30 Credits / 1M tokens
- Output Cost:
- 3.00 Credits / 1M tokens
Usage Example
const { Client } = require('ai-proxy-sdk');
const client = new Client({
consumerKey: process.env.BITMESH_CONSUMER_KEY,
consumerSecret: process.env.BITMESH_CONSUMER_SECRET,
baseUrl: process.env.BITMESH_API_BASE_URL || 'https://api.bitmesh.ai'
});
const response = await client.chat.completions.create({
model: 'qwen/qwen3-next-80b-a3b-instruct',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'What are some fun things to do with AI?' }
],
max_tokens: 1000
});