gateway: add public invoke/jobs facade with redis queue worker and SSE

This commit is contained in:
NODA1 System
2026-02-20 17:55:47 +01:00
parent 7e82a427e3
commit 2e76ef9ccb
7 changed files with 619 additions and 55 deletions

View File

@@ -3,7 +3,7 @@ FROM python:3.11-slim
LABEL maintainer="DAARION.city Team"
LABEL description="Bot Gateway - Telegram/Discord webhook handler with DAARWIZZ"
LABEL version="0.2.0"
LABEL version="0.2.1"
WORKDIR /app/gateway-bot
@@ -15,7 +15,14 @@ RUN pip install --no-cache-dir \
uvicorn==0.27.0 \
httpx==0.26.0 \
pydantic==2.5.3 \
python-multipart==0.0.6 prometheus-client>=0.20.0 PyPDF2>=3.0.0 crewai nats-py pandas openpyxl
python-multipart==0.0.6 \
prometheus-client==0.22.1 \
PyPDF2>=3.0.0 \
crewai \
nats-py \
pandas \
openpyxl \
redis==5.0.1
# Copy gateway code and DAARWIZZ prompt
COPY . .