Spaces:
No application file
No application file
| """ | |
| Hugging Face Spaces entry point for the Robust MMFM Gradio app. | |
| """ | |
| import sys | |
| import os | |
| # Add parent directory to Python path to access open_flamingo and vlm_eval modules | |
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) | |
| # Import and launch the Gradio demo | |
| from gradio_app import demo | |
| if __name__ == "__main__": | |
| demo.launch() | |