Spaces:
Runtime error
Runtime error
| #!/usr/bin/env python3 | |
| """ | |
| InternVL3 Prompt Engineering Application | |
| Entry point for the modular InternVL3 image analysis application. | |
| """ | |
| from frontend.gradio_app import GradioApp | |
| if __name__ == "__main__": | |
| # Create and launch the application | |
| app = GradioApp() | |
| app.launch() |