JasonZhou
JasonZhou
**Bug 描述** Git同步代码,偶然出现文件被删除,重新拉取也没有用 **复现步骤** 该 Bug 复现步骤如下 1. 首先设置git,拉取代码。 2. 本地编写爬虫。 3. 在此git pull 4. 出现文件丢失 **期望结果** git能正常工作 **截屏** 截图是我执行 git pull 后的结果,偶尔会出现
**Bug 描述** 爬虫代码使用了Git克隆,并且开启了自动拉取,每过2天左右,日志就会出现File not Found。查看Docker日志,显示SeaweedFS的8888端口Connection Refused. **复现步骤** 该 Bug 复现步骤如下 1. 创建一个爬虫,从GIT拉取代码,docker pull crawlabteam/crawlab:latest。 2. 镜像digest,sha256:4c2e16e8d3fd097bf7094c3a50370498a8fe2a9478f270c64fc70cd13fb5d4af 3. 设置启动命令,测试正常运行。 4. 创建定时任务运行爬虫,一切正常。 5. 过1~2天后,查看爬虫任务日志,找不到Python文件,打开文件Tab,发现文件都消失了。 6. 查看Crawlab Docker的运行日志,提示 localhost:8888 Connection Refused. 7. 重启docker。...
Macbook M1 steps: run pip install langchain-serve ERROR: Cannot install jina because these package versions have conflicting dependencies. The conflict is caused by: opentelemetry-instrumentation-aiohttp-client 0.33b0 depends on opentelemetry-instrumentation==0.33b0 opentelemetry-instrumentation-fastapi 0.40b0...
My Langchain request is encapsulated in the flask @app. route. For example: @app.route("/api/gpt/answer", methods=["POST"]) def api_gpt_answer(): //..... I wonder how to achieve chain visualization for api call.