amielle commited on
Commit
dee848c
1 Parent(s): cd269b1

feat: Add initial trial functionality

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def parse_patent_source(user_input):
4
+ return "Hello " + user_input + "!!"
5
+
6
+ iface = gr.Interface(fn=parse_patent_source, inputs="text", outputs="text")
7
+ iface.launch()