feat: add hybrid text + recording functionality in agents (#191)

* feat: add recording feature in agents

* chore: pin pipecat version

* feat: show usage in UI

* chore: update pipecat
This commit is contained in:
Abhishek 2026-03-16 15:04:08 +05:30 committed by GitHub
parent f075bcb623
commit 494c60d774
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 2865 additions and 397 deletions

View file

@ -2,6 +2,8 @@ import { StackHandler } from "@stackframe/stack";
import { getAuthProvider } from "@/lib/auth/config";
import { BackButton } from "./BackButton";
export default async function Handler(props: unknown) {
const authProvider = await getAuthProvider();
@ -18,9 +20,16 @@ export default async function Handler(props: unknown) {
const { getStackServerApp } = await import("@/lib/auth/server");
const app = await getStackServerApp();
return <StackHandler
fullPage
app={app!}
routeProps={props}
/>;
return (
<div className="flex flex-col h-screen">
<BackButton />
<div className="flex-1 overflow-auto">
<StackHandler
fullPage
app={app!}
routeProps={props}
/>
</div>
</div>
);
}