Spaces:
Sleeping
Sleeping
| """ | |
| 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 | |
| ) | |