如果openai推理出来的json太长,而客户端设置的token数量又太短,openai会截断json字符串,导致客户端没法正常解析返回结果。解决办法就是加大max token length.

阅读更多

  1. https://testdriven.io/blog/fastapi-and-celery/
  2. FastAPI有内置的Starlette
  3. Flower,Flower is an open-source web application for monitoring and managing Celery clusters. It provides real-time information about the status of Celery workers and tasks.

阅读更多

  1. https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html
  2. pip install "apache-airflow[celery]==2.10.3" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.3/constraints-3.8.txt"
  3. airflow webserver -p 8080
  4. airflow scheduler
  5. airflow users create --role Admin --username admin --email admin --firstname admin --lastname admin --password admin
  6. Go to http://0.0.0.0:8080, login with admin/admin

阅读更多

小孩子最喜欢这种声音了! 总喜欢贴墙壁外面,偷偷往里看,想猛地冲进去,抓几只麻雀。 如果能抓一只麻雀当宠物,那还不立马成为全村最靓的仔?

阅读更多

K8S基本概念

一、何为Deployment

Deployment是一个定义及管理多副本应用(即多个副本 Pod)的新一代对象,与Replication Controller相比,它提供了更加完善的功能,使用起来更加简单方便。

阅读更多

ruby中block, proc, lambda概念有点绕, 举个场景来讲一下这中设计的可能原因,帮助理解

阅读更多