坐山客
坐山客
**I want to join this interesting work,** My code analysis about Velox compilation execution: [Velox--compile](https://www.processon.com/view/link/64b7925b56fce27ff1725d05), @mbasmanova I'm claiming array_remove
> @SANTHOSH-MAMIDISETTI @dusx1981 Welcome, folks. Would you provide some context re: your interest in Velox. Are you part of the teams that use Velox? If so, what are these team...
ABA 的问题是不是可以忽略?
看着像是聊天记录重复了
是否可以接受在聊天的 onDone 处理中,刷新聊天历史列表
### 前端和 python 对我来说,都是新东西,有些基本的问题: **web/components/layout/side-bar.tsx** ``` const handleDelChat = useCallback( (dialogue: IChatDialogueSchema) => { Modal.confirm({ title: 'Delete Chat', content: 'Are you sure delete this chat?', width: '276px', centered: true, onOk()...
@fangyinc 尝试在 web/components/chat/completion.tsx 中添加: ``` useAsyncEffect(async () => { const initMessage = getInitMessage(); if (initMessage) { refreshDialogList(); localStorage.removeItem(STORAGE_INIT_MESSAGE_KET); } }, [history.length]); ``` **可以更新,但是对话列表的标题会是用户最后的问题** **上面的逻辑并不稳定,新的修改版:** ``` useEffect(() => { refreshDialogList(); setTimeout(()...
我在给我们自己的产品,做类似的功能,分了几步,仅供参考: 1:添加编辑数据界面 2:添加写入数据后台接口 3:数据写入向量库 4:相关性搜索中添加查询逻辑
另外,wanna 中的 问题-SQL 对,对提升 nl2sql 的准确性应该有帮助, 建议 DB-GPT 考虑引入
[RAG] Is the RAG in the code used to match and retrieve the query and the entire schema information?
ChromaStore 是做相关性检索的默认存储,在工程启动的时候,系统会读取目标数据库的元数据信息,主要是表的列信息,并把这些信息存入 dbname+_profile 的存储文件。如果想存储自己的信息,需要自己添加逻辑