vechism commited on
Commit
dd2cf66
·
verified ·
1 Parent(s): 73d92de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -96,4 +96,8 @@ agent = CodeAgent(
96
  # of the orb with a concentrated gaze. The unicorn is in a clearing in the forest on a moonlit night.'''
97
  #)
98
 
99
- GradioUI(agent).launch()
 
 
 
 
 
96
  # of the orb with a concentrated gaze. The unicorn is in a clearing in the forest on a moonlit night.'''
97
  #)
98
 
99
+ #GradioUI(agent).launch()
100
+
101
+ if __name__ == "__main__":
102
+ from Gradio_UI import demo # Import Gradio app
103
+ demo.launch(server_name="0.0.0.0", server_port=7860)