Files
chat-handler/Dockerfile.v2
Billy D. 6ef42b3d2c feat: Add chat handler with RAG pipeline
- chat_handler.py: Standalone NATS handler with RAG
- chat_handler_v2.py: Handler-base implementation
- Dockerfiles for both versions

Pipeline: Embeddings → Milvus → Rerank → LLM → (optional TTS)
2026-02-01 20:37:34 -05:00

12 lines
283 B
Docker

# Chat Handler v2 - Using handler-base
ARG BASE_TAG=local
FROM ghcr.io/billy-davies-2/handler-base:${BASE_TAG}
WORKDIR /app
# Copy only the handler code (dependencies are in base image)
COPY chat_handler_v2.py ./chat_handler.py
# Run the handler
CMD ["python", "chat_handler.py"]