qwen3-embedding-8b
LiveThe Qwen3 Embedding model series is the latest proprietary model of the Qwen family, specifically designed for text embedding and ranking tasks. Building upon the dense foundational models of the Qwen3 series, it provides a comprehensive range of text embeddings and reranking models in various sizes (0.6B, 4B, and 8B).
Modality
Embedding
Context window
33K tokens
Region
US
Published
Jul 21, 2026
Pricing
Input
0.56
EGP per 1M tokens
Output
Free
EGP per 1M tokens
Use it via the API
qwen3-embedding-8b works with any OpenAI-compatible SDK — point the base URL at https://preprod-backend.sovereigneg.com/v1 and use your SovereignEG API key.
Run inference
OpenAI-compatible — POST /v1/embeddings — drop-in for any OpenAI SDK.
from openai import OpenAI
client = OpenAI(
base_url="https://preprod-backend.sovereigneg.com/v1",
api_key="YOUR_API_KEY",
)
response = client.embeddings.create(
model="qwen3-embedding-8b",
input="The food was delicious and the waiter...",
encoding_format="float",
)
vector = response.data[0].embedding
print(f"dim={len(vector)}, first 8 dims: {vector[:8]}")import OpenAI from "openai"
const client = new OpenAI({
baseURL: "https://preprod-backend.sovereigneg.com/v1",
apiKey: "YOUR_API_KEY",
})
const response = await client.embeddings.create({
model: "qwen3-embedding-8b",
input: "The food was delicious and the waiter...",
encoding_format: "float",
})
const vector = response.data[0].embedding
console.log(`dim=${vector.length}, first 8 dims:`, vector.slice(0, 8))curl https://preprod-backend.sovereigneg.com/v1/embeddings \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-embedding-8b",
"input": "The food was delicious and the waiter...",
"encoding_format": "float"
}'Frequently asked questions
How much does qwen3-embedding-8b cost?
0.56 EGP per 1M input tokens; Output tokens are free. Billing is metered per token in Egyptian pounds (EGP), with no minimum commitment.
What is the context window of qwen3-embedding-8b?
qwen3-embedding-8b supports a context window of 32,768 tokens (33K).
Where is qwen3-embedding-8b hosted?
qwen3-embedding-8b is served from US (US-hosted inference).
How do I use qwen3-embedding-8b via the API?
qwen3-embedding-8b is available through the OpenAI-compatible SovereignEG API: point your SDK's base URL at https://preprod-backend.sovereigneg.com/v1 and call /v1/embeddings with model "qwen3-embedding-8b" and your API key.
Related models
View all models →qwen2.5-72b-instruct
Alibaba · Chat · 33K context
20.23 EGP / 1M input tokens
qwen3-14b
Alibaba · Chat · 41K context
6.74 EGP / 1M input tokens
qwen3-235b-a22b-instruct-2507
Alibaba · Chat · 262K context
5.06 EGP / 1M input tokens
qwen3-235b-a22b-thinking-2507
Alibaba · Chat · 262K context
12.93 EGP / 1M input tokens