mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-27 02:22:17 +08:00
### What problem does this PR solve? feat: Support for conversational streaming #709 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
import ChatContainer from './large';
|
|
|
|
import styles from './index.less';
|
|
|
|
const SharedChat = () => {
|
|
return (
|
|
<div className={styles.chatWrapper}>
|
|
<ChatContainer></ChatContainer>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SharedChat;
|