Test-Prompt / app.py
abhiman181025's picture
First commit
1314bf5
raw
history blame contribute delete
287 Bytes
#!/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()