Upload app.py
Browse files
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()
|