Bingo_Yan
Bingo_Yan
I got the same problem. # Where my app I deploy the sanic application on k8s. And I have deployed prometheus monitor every pod. # What My Error And I...
Oh, and my sanic version == 21.6.2
I used this command resolved problem ```celery -A src.celery_wrapper worker -l info -P threads --concurrency=4```. I change -P from eventlet to threads.
我也遇到了这个问题,用的0.6.0的镜像,也是大模型回复的内容解析json失败,导致无法提取sql字段
其实把下面的都展开就可以了,看起来是不展开不会默认填参数信息
我是用v0.6.0版本也遇到了这个问题,不过源码就没问题,可能是官方提供的镜像有问题,可以试试用 /docker/base/Dockerfile 自己build一下
尝试了下,直接build也不行,这个问题应该是pydantic版本不一致导入的,在build镜像时,需要手动把pydantic版本调整下 ```Dockerfile ... RUN pip3 install -i $PIP_INDEX_URL fastapi==0.111.0 pydantic==2.7.4 pydantic_core==2.18.410 ... ```
没遇到这个问题,可以从以下几个方面尝试解决: 1. 检查应用管理的数据库中添加成功 2. 执行assets/schema/upgrade/v0_6_0中的upgrade_*.sql脚本
1. 数据持久化可以在docker-compose中加几个映射: 目前已知的可配置路径: - /opt/DB-GPT/webserver/data:/data - /opt/DB-GPT/webserver/models:/app/models - /opt/DB-GPT/webserver/dbgpt-data:/app/pilot/data - /opt/DB-GPT/webserver/dbgpt-message:/app/pilot/message - /opt/DB-GPT/webserver/dbgpts-main:/app/dbgpts-main 2. 关于tugraph连接不上的问题,可以参考另一个issue中自己打一个docker镜像 #2012 ``` FROM eosphorosai/dbgpt:v0.6.0 RUN pip3 install dbgpt-tugraph-plugins==0.1.0rc1 langchain-community neo4j langchain -U -i https://pypi.tuna.tsinghua.edu.cn/simple ```...