-
Notifications
You must be signed in to change notification settings - Fork 818
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
这个怎么实现连续对话 #8
Comments
看官网的介绍好像是没有的。也可能我没看到 |
好像是把上一个对话返回的id传进去,我看有人这样操作的 |
@coder-ldh @sixawnstar 大概就是需要把之前的对话也传入,我测试了下大概是这个样子:
本质上还是:
保存之前的对话内容,使用下面的builder方法传入之前的对话内容即可,大致代码如下:
只是 |
这样不太实用把。如果字数过多呢? |
目前官方支持 gpt-3.5-turbo 模型 对话了 |
可以使用 chat啦 |
@Toifyx @a1667834841 @807592732 1.0.3版本 已经支持 gpt-3.5-turbo 模型 对话了。可以更新版本试试 |
就算是gpt-3.5-turbo 模型,还是得把前文消息传入,才能实现上下文,费钱,还限制字数了 |
那如果聊天回合多了之后,传输的数据量岂不是一直会阶梯增长? |
会增长,但是有token限制,最多传多少吧 |
已经试了,触发了最大字数限制了 |
所以,解决方案是什么? |
session_id |
请问下如何使用sessionId实现 |
session_id如何实现呢?有无demo |
session_id怎么实现的呀,求告知 |
根据token,截取掉前面的对话 |
当前未找到在什么地方添加连续对话选项
The text was updated successfully, but these errors were encountered: