grant-radar / app.py
Riley
feat: Speed & intelligence overhaul - 3x faster with natural responses
e9c393a
Raw
History Blame Contribute Delete
352 Bytes
"""
Grant Analyst - Gradio Demo Entry Point
This is a thin wrapper that launches the main demo.
All logic is in src/analyzer/chat/demo_app.py
"""
from src.analyzer.chat.demo_app import create_demo
if __name__ == "__main__":
demo = create_demo()
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)