// src/views/AgentChat/index.js // Agent聊天页面 import React from 'react'; import { Box, Container, Heading, Text, VStack, useColorModeValue, } from '@chakra-ui/react'; import { ChatInterfaceV2 } from '../../components/ChatBot'; /** * Agent聊天页面 * 提供基于MCP的AI助手对话功能 */ const AgentChat = () => { const bgColor = useColorModeValue('gray.50', 'gray.900'); const cardBg = useColorModeValue('white', 'gray.800'); return ( {/* 页面标题 */} AI投资助手 基于MCP协议的智能投资顾问,支持股票查询、新闻搜索、概念分析等多种功能 {/* 聊天界面 */} ); }; export default AgentChat;