Update app.py

#1
by mwz - opened
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -32,5 +32,4 @@ def paraphraser(input_text,num_return_sequences=1):
32
 
33
  return paraphrased_text
34
 
35
- paraphraseUI = gr.Interface(fn=paraphraser, inputs='textbox', outputs='text', title="ParaPhraser", theme='dark')
36
- paraphraseUI.launch(inbrowser=True, share=True)
 
32
 
33
  return paraphrased_text
34
 
35
+ gr.Interface(fn=paraphraser, inputs='textbox', outputs='text', title="ParaPhraser", theme='dark')