Sakana AI's multi-agent orchestration model from Tokyo, delivered as a single OpenAI-compatible API. Fugu is itself a language model trained to call a pool of specialist LLMs (and recursive instances of itself), handling model selection, delegation, verification, and synthesis behind one endpoint. Built on Sakana AI's TRINITY and Conductor research, its routing intelligence is learned in model weights rather than hand-configured.
256K tokens
1
可用
价格最低
Sakana AI
$14.00/1M tokens
Sakana AI
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: $2.00输出: $12.00 | 120 RPM / 200K TPM | ap-northeast-1global | 正常 | 0ms |
通过 Sakana AI 使用此模型,兼容 OpenAI SDK。
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.sakana.com/v1",
apiKey: process.env.SAKANA_API_KEY,
});
const response = await client.chat.completions.create({
model: "fugu",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);使用 Sakana AI API · 兼容 OpenAI SDK