自定义微调

This commit is contained in:
xuzhenjun 2023-04-10 01:51:53 +08:00
parent 3cfec63a95
commit 02117471d5
5 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ import { memo, useState, useRef, useEffect, useLayoutEffect } from "react";
import SendWhiteIcon from "../icons/send-white.svg";
import BrainIcon from "../icons/brain.svg";
import ExportIcon from "../icons/export.svg";
import ReturnIcon from "../icons/return.svg";
import MenuIcon from "../icons/menu.svg";
import CopyIcon from "../icons/copy.svg";
import DownloadIcon from "../icons/download.svg";
import LoadingIcon from "../icons/three-dots.svg";
@ -555,7 +555,7 @@ export function Chat(props: {
<div className={styles["window-actions"]}>
<div className={styles["window-action-button"] + " " + styles.mobile}>
<IconButton
icon={<ReturnIcon />}
icon={<MenuIcon />}
bordered
title={Locale.Chat.Actions.ChatList}
onClick={props?.showSideBar}

View File

@ -119,7 +119,7 @@ function _Home() {
className={styles.sidebar + ` ${showSideBar && styles["sidebar-show"]}`}
>
<div className={styles["sidebar-header"]}>
<div className={styles["sidebar-title"]}>ChatGPT Next</div>
<div className={styles["sidebar-title"]}>ai大师助手</div>
<div className={styles["sidebar-sub-title"]}>
Build your own AI assistant.
</div>

View File

@ -1,4 +1,4 @@
export const OWNER = "Yidadaa";
export const OWNER = "xuzhenjun130";
export const REPO = "ChatGPT-Next-Web";
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
export const ISSUE_URL = `https://github.com/${OWNER}/${REPO}/issues`;

View File

@ -17,10 +17,10 @@ try {
}
export const metadata = {
title: "ChatGPT Next Web",
description: "Your personal ChatGPT Chat Bot.",
title: "ai大师助手",
description: "你的ai大师助手",
appleWebApp: {
title: "ChatGPT Next Web",
title: "ai大师助手",
statusBarStyle: "default",
},
themeColor: "#fafafa",

View File

@ -25,7 +25,7 @@ const cn = {
if (submitKey === String(SubmitKey.Enter)) {
inputHints += "Shift + Enter 换行";
}
return inputHints + "/ 触发补全";
return inputHints + "/ 触发补全提示词咒语";
},
Send: "发送",
},