feat: add models compare

This commit is contained in:
jialin
2024-09-22 14:55:23 +08:00
parent 2e5f0d9210
commit 4f4f00f0c8
15 changed files with 794 additions and 154 deletions
@@ -0,0 +1,80 @@
import { useIntl } from '@umijs/max';
import { Button, Modal, Typography } from 'antd';
import React from 'react';
import promptList from '../config/prompt';
import '../style/prompt-modal.less';
type ViewModalProps = {
open: boolean;
onCancel: () => void;
onSelect: (list: { role: string; content: string }[]) => void;
};
const AddWorker: React.FC<ViewModalProps> = (props) => {
const { open, onCancel } = props || {};
const intl = useIntl();
const handleSelect = (item: {
title: string;
data: { role: string; content: string }[];
}) => {
props.onSelect(item.data);
onCancel();
};
return (
<Modal
title="Prompts"
open={open}
centered={true}
onCancel={onCancel}
destroyOnClose={true}
closeIcon={true}
maskClosable={false}
keyboard={false}
width={660}
styles={{
body: {
maxHeight: '550px',
overflow: 'auto'
}
}}
footer={null}
>
<div className="prompt-wrapper">
{promptList.map((item, index) => {
return (
<div key={index} className="prompt-item">
<h3 className="title">
<span className="text">{item.title}</span>
<Button
size="middle"
type="default"
onClick={() => handleSelect(item)}
>
Use
</Button>
</h3>
{item.data.map((data, i) => {
return (
<div key={i} className="data-item">
<span className="role">{data.role}</span>
<span className="prompt">
<Typography.Paragraph
style={{ margin: 0 }}
ellipsis={{ rows: 2, expandable: true, symbol: 'more' }}
>
{data.content}
</Typography.Paragraph>
</span>
</div>
);
})}
</div>
);
})}
</div>
</Modal>
);
};
export default React.memo(AddWorker);