feat: add standalone AI assistant window button

- Add ExternalLink button to AI assistant toolbar
- New route /ai-assistant-standalone renders AIAssistantPage without sidebar
- Opens in new browser window via window.open
This commit is contained in:
Agent Zero
2026-07-24 23:55:18 +02:00
parent 35e87b5d51
commit 2f6c3175a3
3 changed files with 29 additions and 1 deletions
@@ -0,0 +1,10 @@
import React from 'react';
import { AIAssistantPage } from './AIAssistant';
export function AIAssistantStandalonePage() {
return (
<div className="h-screen w-screen overflow-hidden bg-white">
<AIAssistantPage />
</div>
);
}