CopilotKit provides visual error display for local development and debugging. This feature is completely free and requires no API keys.
import { CopilotKit } from "@copilotkit/react-core";
export default function App() {
return (
<CopilotKit
runtimeUrl="<your-runtime-url>"
showDevConsole={true} // [!code highlight]
>
{/* Your app */}
</CopilotKit>
);
}- Local development - See errors immediately in your UI
- Quick debugging - No setup required, works out of the box
- Testing - Verify error handling during development
- Dev console not showing:
- Confirm
showDevConsole={true} - Check for JavaScript errors in the browser console
- Ensure no CSS is hiding the error banner
- Confirm