feat(T07): KI-Copilot with OpenRouter chat, voice input, action system, chat history

This commit is contained in:
2026-07-17 02:28:41 +02:00
parent cb89e3ff1e
commit 5cc9f8e9a9
24 changed files with 2878 additions and 188 deletions
+10
View File
@@ -0,0 +1,10 @@
import { ChatInterface } from '@/components/copilot/ChatInterface';
export default function CopilotPage() {
return (
<div className="container mx-auto px-4 py-6">
<h1 className="text-2xl font-bold mb-4">KI-Copilot</h1>
<ChatInterface />
</div>
);
}