优化FastTreeComm类的模型加载逻辑,添加离线工作支持#52
Conversation
|
|
代码修改总结 :
|
samqin123
left a comment
There was a problem hiding this comment.
请忽略,这是py312环境下部署导致错误,这个降级没必要采纳。
|
借本次PR表述一些我昨天在Windows10系统使用docker部署项目时,遇到的一些问题: 1.在 Windows 环境下构建 Linux Docker 镜像时会遇到的问题 问题:查看docker logs 显示 sh: 1: ./start.sh: not found根本原因在于 Windows 和 Linux 系统使用了不同的“换行符”(Line Endings)。 解决方案: RUN chmod +x start.sh 将其替换为下面的新指令,我们将在这行命令中加入 sed 指令,它会在设置执行权限之前,先修复文件的换行符。 RUN sed -i 's/\r$//' start.sh && chmod +x start.sh 2.8000端口冲突问题,只需要换个端口启动即可 |
…on guide and port configuration
|
修复了上传文件,readme文档中增加了1,如何使用本地模型,2. schema文件的意义和构建指引(这个可能请作者修改标准化),以及其它改善。 对于llm模型,作者能否增加其它可选模型,以及llm的api能力?另外也请务必考虑国内用户的便捷性。 |
|
Thank you for taking the time to read the code and for your contribution. We noticed that this PR includes a number of unrelated files. We’ve also observed a similar issue in other PR https://github.com/TencentCloudADP/youtu-graphrag/pull/55/files. Would you be able to review the changes again and resubmit a cleaned-up version? |
No description provided.