model apis · embedding
Run Qwen3 Embedding 8B by Qwen through one OpenAI-compatible endpoint. Pay per use against your GPU.ai balance. No instance to rent, no deployment to manage.
Available nowLive catalog rates, billed per use against your GPU.ai balance. No subscriptions, no minimums.
| Tier | Rate |
|---|---|
| Serverless | Input tokens: $0.10 / 1M |
rates are read hourly from the live model catalog and metered per request
Any OpenAI SDK works: set the base URL to https://api.gpu.ai/v1 and use your GPU.ai API key.
curl https://api.gpu.ai/v1/chat/completions \
-H "Authorization: Bearer $GPUAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpuai/qwen3-embedding-8b",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://api.gpu.ai/v1",
api_key="YOUR_GPUAI_API_KEY",
)
response = client.chat.completions.create(
model="gpuai/qwen3-embedding-8b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.gpu.ai/v1",
apiKey: process.env.GPUAI_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpuai/qwen3-embedding-8b",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);| Model id | gpuai/qwen3-embedding-8b |
| Modality | embedding |
| Author | Qwen |
| Context window | 40,960 tokens |
| Streaming | — |
| Aliases | — |
faq
Qwen3 Embedding 8B on GPU.ai currently costs $0.10 / 1M (input tokens). There are no subscriptions or minimums. Usage is billed against your GPU.ai balance as you go.
Yes. Point any OpenAI SDK at https://api.gpu.ai/v1 with a GPU.ai API key and request model "gpuai/qwen3-embedding-8b". No proprietary client needed.
Generation models bill per output (per image, or per second of video) at the listed rate, metered per request against your GPU.ai balance.