Chat Widget (#10187)

### What problem does this PR solve?

Add a chat widget. I'll probably need some assistance to get this ready
for merge!

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

Co-authored-by: Mohamed Mathari <nocodeventure@Mac-mini-van-Mohamed.fritz.box>
This commit is contained in:
Mohamed Mathari
2025-09-22 05:03:33 +02:00
committed by GitHub
parent d11b1628a1
commit 2e4295d5ca
6 changed files with 975 additions and 6 deletions

View File

@ -41,6 +41,7 @@ export enum Routes {
AgentLogPage = '/agent-log-page',
AgentShare = '/agent/share',
ChatShare = `${Chats}/share`,
ChatWidget = `${Chats}/widget`,
UserSetting = '/user-setting',
DataFlows = '/data-flows',
DataFlow = '/data-flow',
@ -75,6 +76,11 @@ const routes = [
component: `@/pages${Routes.AgentShare}`,
layout: false,
},
{
path: Routes.ChatWidget,
component: `@/pages${Routes.ChatWidget}`,
layout: false,
},
{
path: Routes.Home,
component: '@/layouts',