Loading request...
RAG conversations do not terminate automatically, and the 'STOP' button remains active indefinitely. Although the conversation completes and answers are provided from the knowledge base, source information is not displayed, and the frontend seems to be waiting for reranking results. There's also an issue with incorrect model logging (showing Ollama for Claude models).
我记得有人提过这个bug,最后解决方案是加了个Stop按钮。 我最近也出现这样的问题。以下是我的发现: - 对话完整性没有问题,可以按照KB回答问题;但是不显示来源信息 - Log显示正常,可以显示完整的rerank信息 - 对话始终不会自行停止,按钮不会自动恢复成"Enter",一直显示“STOP” 感觉像是rerank后,reranking已经传到了LLM并且会话继续进行了,但是前端并没有收到reranking的结果,所以一直在等。 而且还有个好玩的事情,我明明用的是Claude的模型,但是log信息总是显示Ollama: `Ollama: { host: 'http://127.0.0.1:11434', username: null, password: null }` 这会不会是这个bug的由来?