feat: refactor HomePage to integrate agents store and update related components
feat: add runtime event handling for providers in ProvidersSection feat: update routing to include Channels and Agents pages feat: extend route types and navigation items for Channels and Agents feat: implement agents store for managing agent data and interactions fix: update chat store to utilize agents store for agent-related functionality chore: export agents store from index fix: enhance runtime types for better event handling fix: update Vite config to handle dev server URL correctly
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { useLocation, useNavigate } from 'react-router-dom';
|
||||
import { Book, Clock, Code, Cpu, House, Puzzle, Settings } from 'lucide-react';
|
||||
import { Book, Bot, Clock, Code, Cpu, House, Link2, Puzzle, Settings } from 'lucide-react';
|
||||
import { useI18n } from '../../i18n';
|
||||
import { NAV_ITEMS, normalizeWorkspacePath } from '../../router/routes';
|
||||
|
||||
@@ -8,6 +8,8 @@ import blueLogo from '../../assets/images/login/blue_logo.png';
|
||||
const MENU_MARKS: Record<string, typeof House> = {
|
||||
'/home': House,
|
||||
'/knowledge': Book,
|
||||
'/channels': Link2,
|
||||
'/agents': Bot,
|
||||
'/models': Cpu,
|
||||
'/skills': Puzzle,
|
||||
'/cron': Clock,
|
||||
|
||||
Reference in New Issue
Block a user