Spaces:
Sleeping
Sleeping
File size: 352 Bytes
ef48716 e9c393a ef48716 e9c393a 4fe4fba 9a12157 e9c393a 4fe4fba e9c393a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
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
)
|