update readme

This commit is contained in:
2023-11-08 20:02:24 +08:00
parent 0c8938dea5
commit 72c3f337a7
2 changed files with 16 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ ChatGPT API WEB 是为 ChatGPT 的日常用户和 Prompt 工程师设计的项
- 小(整个网页 30k 左右) - 小(整个网页 30k 左右)
- 可以设置不同的 API Endpoint方便墙内人士使用反向代理转发 API 请求) - 可以设置不同的 API Endpoint方便墙内人士使用反向代理转发 API 请求)
- 支持 Whisper 语音转文字输入,将会使用历史对话记录和当前输入框内的文本作为 Prompt提高专有名词识别率 - 支持 Whisper 语音转文字输入,将会使用历史对话记录和当前输入框内的文本作为 Prompt提高专有名词识别率
- 支持 TTS API
- 支持 GPT-4v 图片输入
## 屏幕截图 ## 屏幕截图

View File

@@ -730,6 +730,20 @@ export default function ChatBOX(props: {
> >
🖋 🖋
</button> </button>
<span
onClick={() => {
if (image.image_url === undefined) return;
image.image_url.detail =
image.image_url?.detail === "low" ? "high" : "low";
setImages([...images]);
}}
>
<label>HiRes</label>
<input
type="checkbox"
checked={image.image_url?.detail === "high"}
/>
</span>
<button <button
onClick={() => { onClick={() => {
if (!confirm("Are you sure to delete this image?")) { if (!confirm("Are you sure to delete this image?")) {