feat: implement RAG-based chatbot service with daily usage rate limiting and background index worker
All checks were successful
Build and Release / release (push) Successful in 1m27s
All checks were successful
Build and Release / release (push) Successful in 1m27s
This commit is contained in:
@@ -109,6 +109,21 @@ services:
|
||||
command: ["./storage-worker"]
|
||||
networks:
|
||||
- history-api-project
|
||||
|
||||
history_rag_worker:
|
||||
build: .
|
||||
container_name: history_rag_worker
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
history_db:
|
||||
condition: service_healthy
|
||||
history_cache:
|
||||
condition: service_started
|
||||
env_file:
|
||||
- ./assets/resources/.env
|
||||
command: ["./rag-worker"]
|
||||
networks:
|
||||
- history-api-project
|
||||
|
||||
volumes:
|
||||
history_db_data:
|
||||
|
||||
Reference in New Issue
Block a user