Files
ragflow_python/web/src/pages/chat/message-box.tsx
balibabu 452020d33a feat: add temperature and top-p to ModelSetting and add ChatConfigurationModal and bind backend data to KnowledgeCard (#65)
* feat: bind backend data to KnowledgeCard

* feat: add ChatConfigurationModal

* feat: add temperature and top-p to ModelSetting
2024-02-19 19:16:23 +08:00

46 lines
1018 B
TypeScript

// RCE CSS
import { MessageList } from 'react-chat-elements';
import 'react-chat-elements/dist/main.css';
const ChatBox = () => {
return (
<div style={{ width: 600 }}>
{/* <MessageBox
position={'left'}
type={'photo'}
text={'react.svg'}
data={{
uri: 'https://facebook.github.io/react/img/logo.svg',
status: {
click: false,
loading: 0,
},
}}
/> */}
<MessageList
// referance={messageListReferance}
className="message-list"
lockable={true}
toBottomHeight={'100%'}
dataSource={[
{
position: 'right',
type: 'text',
text: 'Lorem ipsum dolor sit amet',
date: new Date(),
},
{
position: 'left',
type: 'text',
text: 'Lorem ipsum dolor sit amet',
date: new Date(),
},
]}
/>
</div>
);
};
export default ChatBox;