vual / ChatGPT-Next-Web-Pro

基于chatgpt-next-web,增加了midjourney绘画功能,接入了stable-diffusion,支持oss,支持dall-e-3、gpt-4-vision-preview、whisper、tts等多模态模型,支持gpt-4-all,支持GPTs商店。新增加了支持后台管理的版本,包括登录注册,平台模型apikey管理,套餐管理,消息保存等。
573 stars 114 forks source link

考虑回复消息附加模型提示吗 #14

Open QAbot-zh opened 2 months ago

QAbot-zh commented 2 months ago

如图,我在原nextweb里做了小小的改动,增加了回复消息的模型标注 (因为时不时会切换模型,所以喜欢标注每条消息分别是哪个模型回复的)

image

改动也很小,只需要修改 app/components/chat.tsx 里的这个div:

                  <div className={styles["chat-message-action-date"]}>
                    {isContext
                      ? Locale.Chat.IsContext
                      : `${message.date.toLocaleString()}${
                        message.model ? ` - Model: ${message.model}` : ''
                      }`}
                  </div>
vual commented 1 month ago

这个有在做了。

vual commented 1 month ago

演示环境已经加上了,可以看看。