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
Kullanılabilir
En ucuz
Sakana AI
$14.00/1M tokens
Sakana AI
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: $2.00Çıkış: $12.00 | 120 RPM / 200K TPM | ap-northeast-1global | Sağlıklı | 0ms |
Bu modeli Sakana AI üzerinden OpenAI uyumlu bir SDK ile kullanın.
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 kullanılıyor · OpenAI uyumlu SDK