Kazakhstan's flagship Mixture-of-Experts language model developed by Astana Hub with technical support from 01.AI. Features 247B total parameters with 22B active per token, achieving state-of-the-art results on Kazakh, Russian, and English benchmarks. Outperforms GPT-4o on Kazakh language tasks.
131K tokens
1
Disponible
Más económico
Hugging Face Inference
$0.00/1M tokens
Hugging Face Inference
Ordenados por coste total (entrada y salida por 1 millón de tokens). Selecciona una fila para ver los detalles del proveedor.
| Proveedor | Precio (por 1 M) | Límites | Regiones | Estado | Latencia |
|---|---|---|---|---|---|
Entrada: GratisSalida: Gratis | 60 RPM / 300K TPM | us-east-1eu-west-1 | Operativo | 0ms |
Usa este modelo mediante Hugging Face Inference con un SDK compatible con OpenAI.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.hugging-face.com/v1",
apiKey: process.env.HUGGING_FACE_API_KEY,
});
const response = await client.chat.completions.create({
model: "astanahub/alemllm",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API de Hugging Face Inference · SDK compatible con OpenAI