Falcon 3 10B
TII's 2024 open-weight refresh, Apache-2.0, multilingual, and competitive at 10B size.
Updated
Quick facts
- Released
- Dec 2024
- Context
- 32K tokens
- Output / 1M
- Pricing not published
- License
- Falcon LLM License
About Falcon 3 10B
Falcon 3 10B is the late-2024 release from the Technology Innovation Institute, a notable Apache-2.0-licensed mid-size open-weight model with strong multilingual coverage including Arabic. The Falcon line has been part of the open-weight conversation since 2023 and Falcon 3 brought meaningful quality gains over the Falcon 2 generation.
For Arabic-language deployments and regional customers in the Middle East, Falcon 3 is one of the few models with first-party Arabic training and tuning.
Benchmarks
Published scores from Other's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.
Capabilities
Strengths
- Multilingual incl. Arabic
- Open weights
Tracked weaknesses
- Custom license
- Smaller community than Llama / Qwen
Pricing
Per-million-token rates as published by Other.
Call Falcon 3 10B from your code
Drop-in snippet for the Other 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: "falcon-3-10b",
messages: [
{ role: "user", content: "What's the time complexity of quicksort?" },
],
});
console.log(completion.choices[0].message.content);Compare Falcon 3 10B with…
Frequently asked
How much does Falcon 3 10B cost?
Other has not published per-token API pricing for Falcon 3 10B at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.What is Falcon 3 10B's context window?
Falcon 3 10B supports a context window of 32K tokens.Is Falcon 3 10B open source?
Falcon 3 10B ships with open weights under the Falcon LLM License license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.When was Falcon 3 10B released?
Falcon 3 10B was released on Dec 17, 2024 by Other.
Intelligence, distilled weekly.
One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.