Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] 使用非gpt.3.5的模型聊天导致无法自动总结内容 #4587

Open
1 of 3 tasks
chengtx809 opened this issue Apr 29, 2024 · 11 comments
Open
1 of 3 tasks

[Bug] 使用非gpt.3.5的模型聊天导致无法自动总结内容 #4587

chengtx809 opened this issue Apr 29, 2024 · 11 comments
Labels
bug Something isn't working

Comments

@chengtx809
Copy link

Bug Description

我使用了https://github.com/Harry-zklcdc/go-proxy-bingai项目部署了newbing的代理api,
使用的模型列表如下:
-all,+gpt-4-turbo-preview,+gpt-4-vision-preview,+Precise-g4t,+Balanced-g4t,+Creative-g4t,+Precise-g4t-offline,+Balanced-g4t-offline,+Creative-g4t-offline,+Precise-g4t-18k,+Balanced-g4t-18k,+Creative-g4t-18k
但是无法总结聊天内容并自动写标题

Steps to Reproduce

直接聊天,使用gpt-4-turbo-preview模型

Expected Behavior

无法总结聊天内容并总结标题

Screenshots

No response

Deployment Method

  • Docker
  • Vercel
  • Server

Desktop OS

No response

Desktop Browser

No response

Desktop Browser Version

No response

Smartphone Device

No response

Smartphone OS

No response

Smartphone Browser

No response

Smartphone Browser Version

No response

Additional Logs

No response

@chengtx809 chengtx809 added the bug Something isn't working label Apr 29, 2024
@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically.


Title: [Bug] Using non-gpt.3.5 model chat results in the inability to automatically summarize the content

@chengtx809
Copy link
Author

初步看了看好像是app/constant.ts把总结模型写死了的问题

export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";

@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically.


At first glance, it seems that the summary model is written to death in app/constant.ts.

export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";

@chengtx809
Copy link
Author

chengtx809 commented Apr 29, 2024

我提交了pr来修复这个bug: #4593

@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically.


I submitted a PR to fix this bug: #4588

@Kosette
Copy link

Kosette commented Apr 30, 2024

这个issue我记得当初考虑的是gpt4系列模型价格非常贵,回退到3.5,在加入gemini的时候讨论过,具体的issue一时没找到

@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically.


I remember that I was thinking about this issue because the gpt4 series models were very expensive and I wanted to revert to 3.5. I discussed this issue when I joined gemini, but I couldn’t find the specific issue at the moment.

@chengtx809
Copy link
Author

这个issue我记得当初考虑的是gpt4系列模型价格非常贵,回退到3.5,在加入gemini的时候讨论过,具体的issue一时没找到

但是如果写死,我又不使用gpt-3.5的模型进行聊天,会导致无法总结:(
可能个人观点问题吧,我认为与其看着一堆“新的聊天”还不如花多点token,哭笑不得了属于是

@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically.


Regarding this issue, I remember that I originally considered that the gpt4 series models were very expensive and would be rolled back to 3.5. I discussed this issue when I joined gemini, but I couldn’t find the specific issue at the moment.

But if I write it down and I don’t use the gpt-3.5 model for chatting, it will be impossible to summarize: (
Maybe it’s a matter of personal opinion. I think it’s better to spend more tokens than to watch a bunch of “new chats”. I think it’s funny to laugh or cry.

@Dean-YZG
Copy link
Contributor

Dean-YZG commented May 6, 2024

目前,无法生成总结题目的情况会出现在使用 gpt-* 这类模型上, gpt-3.5-turbo 是 gpt-* 这类模型的总结模型,但是,通过环境变量禁用 gpt-3.5-turbo 之后,nextchat proxy会拒绝一切调用 gpt-3.5-turbo 的请求,因此导致无法总结。
gpt-3.5-turbo禁用的情况下,希望仍然使用 gpt-3.5-turbo 生成总结,还是使用 『当前模型』进行总结?

Bug Description

我使用了https://github.com/Harry-zklcdc/go-proxy-bingai项目部署了newbing的代理api, 使用的模型列表如下: -all,+gpt-4-turbo-preview,+gpt-4-vision-preview,+Precise-g4t,+Balanced-g4t,+Creative-g4t,+Precise-g4t-offline,+Balanced-g4t-offline,+Creative-g4t-offline,+Precise-g4t-18k,+Balanced-g4t-18k,+Creative-g4t-18k 但是无法总结聊天内容并自动写标题

Steps to Reproduce

直接聊天,使用gpt-4-turbo-preview模型

Expected Behavior

无法总结聊天内容并总结标题

Screenshots

No response

Deployment Method

  • Docker
  • Vercel
  • Server

Desktop OS

No response

Desktop Browser

No response

Desktop Browser Version

No response

Smartphone Device

No response

Smartphone OS

No response

Smartphone Browser

No response

Smartphone Browser Version

No response

Additional Logs

No response

@chengtx809
Copy link
Author

目前,无法生成总结题目的情况会出现在使用 gpt-* 这类模型上, gpt-3.5-turbo 是 gpt-* 这类模型的总结模型,但是,通过环境变量禁用 gpt-3.5-turbo 之后,nextchat proxy会拒绝一切调用 gpt-3.5-turbo 的请求,因此导致无法总结。 gpt-3.5-turbo禁用的情况下,希望仍然使用 gpt-3.5-turbo 生成总结,还是使用 『当前模型』进行总结?

Bug Description

我使用了https://github.com/Harry-zklcdc/go-proxy-bingai项目部署了newbing的代理api, 使用的模型列表如下: -all,+gpt-4-turbo-preview,+gpt-4-vision-preview,+Precise-g4t,+Balanced-g4t,+Creative-g4t,+Precise-g4t-offline,+Balanced-g4t-offline,+Creative-g4t-offline,+Precise-g4t-18k,+Balanced-g4t-18k,+Creative-g4t-18k 但是无法总结聊天内容并自动写标题

Steps to Reproduce

直接聊天,使用gpt-4-turbo-preview模型

Expected Behavior

无法总结聊天内容并总结标题

Screenshots

No response

Deployment Method

  • Docker
  • Vercel
  • Server

Desktop OS

No response

Desktop Browser

No response

Desktop Browser Version

No response

Smartphone Device

No response

Smartphone OS

No response

Smartphone Browser

No response

Smartphone Browser Version

No response

Additional Logs

No response

我个人希望使用当前模型进行总结

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants