File size: 287 Bytes
1314bf5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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()