ansegura commited on
Commit
01d85a7
·
1 Parent(s): 9cd0f76

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def arg_detection(text):
4
+
5
+ return text
6
+
7
+ # Write 1 line of Python to create a simple GUI
8
+ gr.Interface(fn=arg_detection, inputs="text", outputs="text", title="Argument detection task").launch()