Back to Copilotkit

Cloud Copilotkit Provider

showcase/shell-docs/src/content/snippets/cloud/cloud-copilotkit-provider.mdx

1.57.0432 B
Original Source
tsx
import "./globals.css";
import { ReactNode } from "react";
import { CopilotKit } from "@copilotkit/react-core"; // [!code highlight]

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="en">
      <body>
        <CopilotKit publicApiKey="<your-copilot-cloud-public-api-key>">
          {children}
        </CopilotKit>
      </body>
    </html>
  );
}