ユーザーの声を聞き、LLM で考え、話し返す音声エージェントを、WebSocket 上でリアルタイムに構築します。 ベータ
このガイドを終えると、次が揃います。
- 音声認識と音声合成を備えたサーバー側音声エージェント
- 応答をストリームする LLM 駆動の
onTurnハンドラー - 会話中にエージェントが呼び出せるツール
- プッシュトゥトーク風 UI の React クライアント
- Workers AI にアクセスできる Cloudflare アカウント
- Node.js 18 以降
Vite と React で新しい Workers プロジェクトを足場にし、音声依存関係を追加します。
npm create cloudflare@latest voice-agent -- --template cloudflare/agents-starter
cd voice-agent
npm install @cloudflare/voiceスターターは、動く Vite + React + Cloudflare Workers のセットアップを提供します。以降の手順でサーバーとクライアントのコードを置き換えます。
wrangler.jsonc を更新し、Workers AI バインディングと音声エージェント用の Durable Object を含めます。
{
"name": "voice-agent",
// Set this to today's date
"compatibility_date": "2026-09-20",
"compatibility_flags": ["nodejs_compat"],
"main": "src/server.ts",
"ai": {
"binding": "AI"
},
"durable_objects": {
"bindings": [
{
"name": "MyVoiceAgent",
"class_name": "MyVoiceAgent"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["MyVoiceAgent"]
}
]
}name = "voice-agent"
# Set this to today's date
compatibility_date = "2026-09-20"
compatibility_flags = [ "nodejs_compat" ]
main = "src/server.ts"
[ai]
binding = "AI"
[[durable_objects.bindings]]
name = "MyVoiceAgent"
class_name = "MyVoiceAgent"
[[migrations]]
tag = "v1"
new_sqlite_classes = [ "MyVoiceAgent" ]src/server.ts を次の内容に置き換えます。withVoice mixin は、標準の Agent クラスに音声パイプライン全体(STT、文単位の分割、TTS、会話の永続化)を追加します。
import { Agent, routeAgentRequest } from "agents";
import { withVoice, WorkersAIFluxSTT, WorkersAITTS } from "@cloudflare/voice";
import { streamText, tool, stepCountIs } from "ai";
import { createWorkersAI } from "workers-ai-provider";
import { z } from "zod";
const VoiceAgent = withVoice(Agent);
export class MyVoiceAgent extends VoiceAgent {
transcriber = new WorkersAIFluxSTT(this.env.AI);
tts = new WorkersAITTS(this.env.AI);
async onTurn(transcript, context) {
const workersAi = createWorkersAI({ binding: this.env.AI });
const result = streamText({
model: workersAi("@cf/moonshotai/kimi-k2.6"),
system:
"You are a helpful voice assistant. Keep responses concise — you are being spoken aloud.",
messages: [
...context.messages.map((m) => ({
role: m.role,
content: m.content,
})),
{ role: "user", content: transcript },
],
tools: {
get_current_time: tool({
description: "Get the current date and time.",
inputSchema: z.object({}),
execute: async () => ({
time: new Date().toLocaleTimeString("en-US", {
hour: "2-digit",
minute: "2-digit",
}),
}),
}),
},
stopWhen: stepCountIs(3),
abortSignal: context.signal,
});
return result.textStream;
}
async onCallStart(connection) {
await this.speak(connection, "Hi there! How can I help you today?");
}
}
export default {
async fetch(request, env) {
return (
(await routeAgentRequest(request, env)) ??
new Response("Not found", { status: 404 })
);
},
};import { Agent, routeAgentRequest, type Connection } from "agents";
import {
withVoice,
WorkersAIFluxSTT,
WorkersAITTS,
type VoiceTurnContext,
} from "@cloudflare/voice";
import { streamText, tool, stepCountIs } from "ai";
import { createWorkersAI } from "workers-ai-provider";
import { z } from "zod";
const VoiceAgent = withVoice(Agent);
export class MyVoiceAgent extends VoiceAgent<Env> {
transcriber = new WorkersAIFluxSTT(this.env.AI);
tts = new WorkersAITTS(this.env.AI);
async onTurn(transcript: string, context: VoiceTurnContext) {
const workersAi = createWorkersAI({ binding: this.env.AI });
const result = streamText({
model: workersAi("@cf/moonshotai/kimi-k2.6"),
system:
"You are a helpful voice assistant. Keep responses concise — you are being spoken aloud.",
messages: [
...context.messages.map((m) => ({
role: m.role as "user" | "assistant",
content: m.content,
})),
{ role: "user" as const, content: transcript },
],
tools: {
get_current_time: tool({
description: "Get the current date and time.",
inputSchema: z.object({}),
execute: async () => ({
time: new Date().toLocaleTimeString("en-US", {
hour: "2-digit",
minute: "2-digit",
}),
}),
}),
},
stopWhen: stepCountIs(3),
abortSignal: context.signal,
});
return result.textStream;
}
async onCallStart(connection: Connection) {
await this.speak(connection, "Hi there! How can I help you today?");
}
}
export default {
async fetch(request: Request, env: Env) {
return (
(await routeAgentRequest(request, env)) ??
new Response("Not found", { status: 404 })
);
},
} satisfies ExportedHandler<Env>;要点:
WorkersAIFluxSTTが連続音声認識を扱います。ユーザーが話し終わったことをモデルが検出します。WorkersAITTSが LLM の応答を文ごとに音声へ変換します。onTurnは文字起こしを受け取り、ストリームを返します。mixin がストリームを文に分割し、それぞれを合成します。onCallStartはユーザー接続時に挨拶を送ります。context.messagesには、現在の文字起こしより前の完了済み会話履歴が含まれます。- ユーザーが割り込むか切断すると、
context.signalが abort されます。
src/client.tsx を、useVoiceAgent フックを使う React コンポーネントに置き換えます。フックは WebSocket 接続、マイク取り込み、音声再生、割り込み検出を管理します。
import { useVoiceAgent } from "@cloudflare/voice/react";
function App() {
const {
status,
transcript,
interimTranscript,
metrics,
audioLevel,
isMuted,
startCall,
endCall,
toggleMute,
} = useVoiceAgent({ agent: "MyVoiceAgent" });
return (
<div>
<h1>Voice Agent</h1>
<p>Status: {status}</p>
<div>
<button onClick={status === "idle" ? startCall : endCall}>
{status === "idle" ? "Start Call" : "End Call"}
</button>
{status !== "idle" && (
<button onClick={toggleMute}>{isMuted ? "Unmute" : "Mute"}</button>
)}
</div>
{interimTranscript && (
<p>
<em>{interimTranscript}</em>
</p>
)}
{transcript.map((msg, i) => (
<p key={i}>
<strong>{msg.role}:</strong> {msg.text}
</p>
))}
{metrics && (
<p>
LLM: {metrics.llm_ms}ms | TTS: {metrics.tts_ms}ms | First audio:{" "}
{metrics.first_audio_ms}ms
</p>
)}
</div>
);
}status フィールドは "idle" → "listening" → "thinking" → "speaking" → "listening" と循環し、応答性の高い UI に必要な情報が揃います。
npm run devブラウザーでアプリを開き、Start Call を選択して話します。文字起こしがリアルタイムで表示され、エージェントの応答がスピーカーから再生されます。
パイプラインの各段階でデータを横取りし、変換できます。たとえば短い文字起こし(ノイズ)を除外し、TTS 前に発音を調整します。
export class MyVoiceAgent extends VoiceAgent {
transcriber = new WorkersAIFluxSTT(this.env.AI);
tts = new WorkersAITTS(this.env.AI);
afterTranscribe(transcript, connection) {
if (transcript.length < 3) return null;
return transcript;
}
beforeSynthesize(text, connection) {
return text.replace(/\bAI\b/g, "A.I.");
}
async onTurn(transcript, context) {
return "You said: " + transcript;
}
}export class MyVoiceAgent extends VoiceAgent<Env> {
transcriber = new WorkersAIFluxSTT(this.env.AI);
tts = new WorkersAITTS(this.env.AI);
afterTranscribe(transcript: string, connection: Connection) {
if (transcript.length < 3) return null;
return transcript;
}
beforeSynthesize(text: string, connection: Connection) {
return text.replace(/\bAI\b/g, "A.I.");
}
async onTurn(transcript: string, context: VoiceTurnContext) {
return "You said: " + transcript;
}
}afterTranscribe から null を返すと、発話全体を破棄します。ノイズやごく短い文字起こしの除外に使えます。
エージェントのロジックを変えずに、サードパーティの STT または TTS プロバイダーに差し替えられます。
import { ElevenLabsTTS } from "@cloudflare/voice-elevenlabs";
import { DeepgramSTT } from "@cloudflare/voice-deepgram";
export class MyVoiceAgent extends VoiceAgent {
transcriber = new DeepgramSTT({
apiKey: this.env.DEEPGRAM_API_KEY,
});
tts = new ElevenLabsTTS({
apiKey: this.env.ELEVENLABS_API_KEY,
voiceId: "21m00Tcm4TlvDq8ikWAM",
});
async onTurn(transcript, context) {
return "You said: " + transcript;
}
}import { ElevenLabsTTS } from "@cloudflare/voice-elevenlabs";
import { DeepgramSTT } from "@cloudflare/voice-deepgram";
export class MyVoiceAgent extends VoiceAgent<Env> {
transcriber = new DeepgramSTT({
apiKey: this.env.DEEPGRAM_API_KEY,
});
tts = new ElevenLabsTTS({
apiKey: this.env.ELEVENLABS_API_KEY,
voiceId: "21m00Tcm4TlvDq8ikWAM",
});
async onTurn(transcript: string, context: VoiceTurnContext) {
return "You said: " + transcript;
}
}