baconnier commited on
Commit
561b6c3
1 Parent(s): 3c0edbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -857,11 +857,9 @@ class GradioInterface:
857
  refined_output = self.prompt_refiner.apply_prompt(refined_prompt)
858
  return original_output, refined_output
859
 
860
- def launch(self):
861
- self.interface.launch()
862
 
863
- def launch(self, share=False):
864
- self.interface.launch(share=share)
865
 
866
  # Main code to run the application
867
  if __name__ == '__main__':
 
857
  refined_output = self.prompt_refiner.apply_prompt(refined_prompt)
858
  return original_output, refined_output
859
 
 
 
860
 
861
+ def launch(self, share=False):
862
+ self.interface.launch(share=share)
863
 
864
  # Main code to run the application
865
  if __name__ == '__main__':