mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
16 lines
441 B
JavaScript
16 lines
441 B
JavaScript
/**
|
|
* Layout for /agents/* pages.
|
|
* These pages host the AiAgent component full-screen — no studio chrome needed.
|
|
* The api key is available via the muapi_key cookie which StandaloneShell sets.
|
|
*/
|
|
export const metadata = {
|
|
title: "Agent Chat — Open Generative AI",
|
|
};
|
|
|
|
export default function AgentsLayout({ children }) {
|
|
return (
|
|
<div className="h-screen w-full overflow-hidden bg-black">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|