branch:
wrangler.jsonc
601 bytesRaw
{
"$schema": "../../node_modules/wrangler/config-schema.json",
"name": "voice-agent",
"compatibility_date": "2026-01-28",
"compatibility_flags": ["nodejs_compat"],
"main": "src/server.ts",
"ai": {
"binding": "AI",
"remote": true
},
"durable_objects": {
"bindings": [
{
"class_name": "MyVoiceAgent",
"name": "MyVoiceAgent"
}
]
},
"migrations": [
{
"new_sqlite_classes": ["MyVoiceAgent"],
"tag": "v1"
}
],
"assets": {
"not_found_handling": "single-page-application",
"run_worker_first": ["/agents/*"]
}
}