| 12345678910111213141516171819 |
- /**
- * ChatInterface 测试页面
- */
- import React from 'react';
- import { ChatInterface } from '@/components/chat-client-integration/ChatInterface';
- const ChatTestPage: React.FC = () => {
- return (
- <div style={{ height: '100vh' }}>
- <ChatInterface
- appId="test-app-001"
- chatMode="LOCAL"
- />
- </div>
- );
- };
- export default ChatTestPage;
|