Large language model developed by ISSAI (Nazarbayev University) customized from Llama 3.1 70B to improve helpfulness of responses in the Kazakh language. Part of Kazakhstan's initiative to ensure the country benefits from generative AI advancements.
128K tokens
1
可用
价格最低
Hugging Face Inference
$0.00/1M tokens
Hugging Face Inference
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: 免费输出: 免费 | 60 RPM / 300K TPM | us-east-1eu-west-1 | 正常 | 0ms |
通过 Hugging Face Inference 使用此模型,兼容 OpenAI SDK。
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: "issai/LLama-3.1-KazLLM-1.0-70B",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);使用 Hugging Face Inference API · 兼容 OpenAI SDK