Aya Expanse 8B
Smaller Aya Expanse, multilingual on a single-GPU budget.
Updated
Quick facts
- Released
- Oct 2024
- Context
- 8.2K tokens
- Output / 1M
- Pricing not published
- License
- CC-BY-NC 4.0
About Aya Expanse 8B
Aya Expanse 8B brings Cohere's 23-language multilingual approach to a small-model budget. Useful for edge deployments serving non-English users on hardware that can't accommodate the 32B variant.
The non-commercial license remains the main constraint; for research and education the model is one of the strongest small multilingual options available.
Benchmarks
Published scores from Cohere's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.
Capabilities
Strengths
- Multilingual at small size
- Strong cross-lingual transfer
- Efficient on commodity GPUs
Tracked weaknesses
- Non-commercial license
- Short context
Pricing
Per-million-token rates as published by Cohere.
Call Aya Expanse 8B from your code
Drop-in snippet for the Cohere SDK. Set your API key in the environment and run.
import OpenAI from "openai";
const client = new OpenAI({
// Use OPENAI_API_KEY for OpenAI, or your provider's key + baseURL.
apiKey: process.env.OPENAI_API_KEY,
});
const completion = await client.chat.completions.create({
model: "aya-expanse-8b",
messages: [
{ role: "user", content: "What's the time complexity of quicksort?" },
],
});
console.log(completion.choices[0].message.content);Compare Aya Expanse 8B with…
Frequently asked
How much does Aya Expanse 8B cost?
Cohere has not published per-token API pricing for Aya Expanse 8B at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.What is Aya Expanse 8B's context window?
Aya Expanse 8B supports a context window of 8.2K tokens.Is Aya Expanse 8B open source?
Aya Expanse 8B ships with open weights under the CC-BY-NC 4.0 license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.When was Aya Expanse 8B released?
Aya Expanse 8B was released on Oct 23, 2024 by Cohere.
Intelligence, distilled weekly.
One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.