vishnun commited on
Commit
0caffa0
1 Parent(s): a7e1387

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -1,7 +1,9 @@
1
  import gradio as gr
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
-
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
7
  iface.launch()
 
1
  import gradio as gr
2
+ from nligraphspacy import NLIGRAPH
3
 
4
+ def greet(text):
5
+ nligraph = NLIGRAPH.RelationEntityExtract(text)
6
+ return nligraph.get_seperate_entities()
7
+
8
+ iface = gr.Interface(fn=greet, inputs="text", outputs="json")
9
  iface.launch()