kasitbot / wsgi.py
snygginghani's picture
Deploy KASITBot RAG chatbot
71e1c4b
raw
history blame contribute delete
236 Bytes
"""
Production entry point — used by gunicorn.
Calls init() so the RAG pipeline and OpenAI clients are ready before
the first request arrives. app.py's own __main__ block is skipped by gunicorn.
"""
from app import app, init
init()