Add browser call-in page and update host dashboard for browser callers

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-05 15:52:54 -07:00
parent 863a81f87b
commit 82ad234480
5 changed files with 402 additions and 10 deletions

View File

@@ -416,6 +416,11 @@ async def index():
return FileResponse(frontend_dir / "index.html")
@app.get("/call-in")
async def call_in_page():
return FileResponse(frontend_dir / "call-in.html")
# --- Request Models ---
class ChatRequest(BaseModel):