Open-Generative-AI/app/agents/layout.js

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>
);
}