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)
This commit is contained in:
11
Dockerfile.v2
Normal file
11
Dockerfile.v2
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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"]
|
||||
Reference in New Issue
Block a user