TII's open-source 10B parameter model from the Falcon 3 family. Achieved number one position on Hugging Face's LLM leaderboard in its size category, outperforming Meta's Llama variants and other models under 13B parameters.
33K tokens
1
available
Cheapest
Lambda
$0.30/1M tokens
Lambda
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.10Out: $0.20 | 300 RPM / 1.0M TPM | us-east-1us-west-2 | Unhealthy | 0ms |
Use this model via Lambda with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.lambda.com/v1",
apiKey: process.env.LAMBDA_API_KEY,
});
const response = await client.chat.completions.create({
model: "falcon-3-10b-instruct",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Lambda API • OpenAI-compatible SDK