import gradio as gr from nligraphspacy import NLIGRAPH def greet(text): nligraph = NLIGRAPH.RelationEntityExtract(text) return nligraph.get_seperate_entities() iface = gr.Interface(fn=greet, inputs="text", outputs="json") iface.launch()