sashtech commited on
Commit
aed9390
·
verified ·
1 Parent(s): 0e2fd8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -129,4 +129,7 @@ with gr.Blocks() as interface:
129
  output_text = gr.Textbox(label="Output")
130
 
131
  detect_button.click(detect_ai_generated, inputs=text_input, outputs=output_text)
132
- paraphrase_button.click(paraphrase_and_correct, inputs=text_input, outputs=output_t
 
 
 
 
129
  output_text = gr.Textbox(label="Output")
130
 
131
  detect_button.click(detect_ai_generated, inputs=text_input, outputs=output_text)
132
+ paraphrase_button.click(paraphrase_and_correct, inputs=text_input, outputs=output_text)
133
+
134
+ # Launch the Gradio app
135
+ interface.launch(debug=False)