Chirp 3
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。 Official model id is chirp_3; private preview 2025-04-11, GA 2025-10-13 per Speech-to-Text release notes; billed per audio.
30 秒で Chirp 3 を使う
OpenAI 互換。base_url を差し替えるだけで、SDK はそのまま。POST /v1/audio/transcriptions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.audio.transcriptions.create(
model="chirp-3",
file=open("meeting.mp3", "rb"),
language="en",
)
print(resp.text)import OpenAI from "openai";
import fs from "node:fs";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.audio.transcriptions.create({
model: "chirp-3",
file: fs.createReadStream("meeting.mp3"),
});
console.log(resp.text);curl https://synthorai.io/v1/audio/transcriptions \
-H "Authorization: Bearer sk-syn-..." \
-F model="chirp-3" \
-F file=@meeting.mp3package main
import (
"context"
"fmt"
"os"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
f, _ := os.Open("meeting.mp3")
resp, _ := client.Audio.Transcriptions.New(context.TODO(), openai.AudioTranscriptionNewParams{
Model: "chirp-3",
File: f,
})
fmt.Println(resp.Text)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.audio.transcriptions.*;
import java.nio.file.Paths;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
Transcription resp = client.audio().transcriptions().create(
TranscriptionCreateParams.builder()
.model("chirp-3")
.file(Paths.get("meeting.mp3"))
.build()).asTranscription();
System.out.println(resp.text());Chirp 3 について
Chirp 3 は Speech-to-Text v2 API 上の Google の多言語 ASR 特化型生成モデルの最新世代です。
- 公式ドキュメントは、これまでの Chirp モデルを超える精度と速度の向上に加え、話者ダイアライゼーションと自動言語検出という 2 つの新機能を強調しています。
- 100 を超える言語とその変種を文字起こしし、自動の句読点付与と大文字化を生成し、最大 1,000 個のフレーズヒントによる音声アダプテーションを受け付け、ストリーミング・同期・バッチ認識すべてに対応します。
- Synthorai では、Chirp 3 は他のすべての音声モデルと同じ OpenAI 互換の文字起こしインターフェースから利用できます。
スペックと制限
| モダリティ | audio → text |
| 機能 | streaming · batch · diarization |
| 音声の制限 | Auto-detected audio decoding; sync Recognize <1 min, BatchRecognize 1 min-1 hr (<=20 min with word timestamps), StreamingRecognize for real-time; speaker diarization (BatchRecognize only, 14 languages); language-agnostic transcription; 25 GA + 75+ preview languages |
| 特記事項 | Official model id is chirp_3; private preview 2025-04-11, GA 2025-10-13 per Speech-to-Text release notes; billed per audio. |
よくある質問
Chirp 3 API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。支払い方法を追加する前に、実際のワークロードで Chirp 3 を試すには十分な量です。
Chirp 3 は何が得意ですか?
話者ダイアライゼーションと自動言語検出、さらに100 を超える言語とその変種を文字起こしと最大 1,000 フレーズヒントの音声アダプテーション。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Chirp 3 の料金はいくらですか?
Synthorai 上の Chirp 3 は文字起こしする音声 1 分あたり $0.016 です。従量課金でプラットフォーム手数料なし、サブスクリプションも不要です。
Chirp 3 はどの言語に対応していますか?
Chirp 3 は speaker diarization (BatchRecognize only, 14 languages) に対応しています。Synthorai では POST /v1/audio/transcriptions で呼び出せます。OpenAI 文字起こし API と同じ形式です。
Chirp 3 を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="chirp-3" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。