perf: 版本文案

This commit is contained in:
archer 2023-04-03 00:48:56 +08:00
parent 56ba6fa5f7
commit 677e61416d
No known key found for this signature in database
GPG Key ID: 166CA6BF2383B2BB
7 changed files with 15 additions and 15 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 KiB

BIN
public/imgs/wxcode300.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -23,7 +23,7 @@ const WxConcat = ({ onClose }: { onClose: () => void }) => {
<ModalBody textAlign={'center'}>
<Image
style={{ margin: 'auto' }}
src={'/imgs/wxcode.jpg'}
src={'/imgs/wxcode300.jpg'}
width={200}
height={200}
alt=""

View File

@ -10,6 +10,11 @@ export const introPage = `
[Git ](https://github.com/c121914yu/FastGPT)
### /
wx: YNyiqi
![](/imgs/wxcode300.jpg)
###
1. 使
2. openai openai API Key
@ -31,30 +36,25 @@ export const introPage = `
4. 使
使tokens
###
wx: YNyiqi
`;
export const chatProblem = `
##
****
4000 tokens, 8000 tokens,
****
chatGPT
****
****
**API key **
openai API key 使 API key
`;
export const versionIntro = `
## Fast GPT V2.2
## Fast GPT V2.3
*
*
* ,
*
`;
export const shareHint = `

View File

@ -30,7 +30,6 @@ const Empty = ({ intro }: { intro: string }) => {
<Markdown source={versionIntro} />
</Card>
<Card p={4}>
<Header></Header>
<Markdown source={chatProblem} />
</Card>
</Box>

View File

@ -141,6 +141,7 @@ const ModelDataCard = ({ model }: { model: ModelSchema }) => {
mr={2}
size={'sm'}
isLoading={isLoadingExport}
title={'v2.3之前版本的数据无法导出'}
onClick={() => onclickExport()}
>

View File

@ -42,12 +42,12 @@ const ModelTable = ({
dataIndex: 'status',
render: (item: ModelSchema) => (
<Tag
colorScheme={formatModelStatus[item.status].colorTheme}
colorScheme={formatModelStatus[item.status]?.colorTheme}
variant="solid"
px={3}
size={'md'}
>
{formatModelStatus[item.status].text}
{formatModelStatus[item.status]?.text}
</Tag>
)
},