Commit f7ff5d1f authored by Vũ Hoàng Anh's avatar Vũ Hoàng Anh

fix: standardize bot pronouns to ban/minh across entire system prompt

parent 58da27d3
FROM python:3.11-slim
......@@ -16,4 +17,7 @@ COPY . .
# Expose port 5000 (Port chạy server)
EXPOSE 5000
CMD gunicorn server:app --workers $(( 2 * $(nproc) + 1 )) --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:5000 --timeout 60
ENV WORKERS=4
ENV TIMEOUT=60
CMD gunicorn server:app --workers $WORKERS --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:5000 --timeout $TIMEOUT
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment