BhagvadGita / app.py
CosmoAI's picture
Create app.py
de5ceed verified
raw
history blame
161 Bytes
import gradio as gr
def make_call(data)
print(data)
gradio_interface = gr.Interface(fn=make_call, inputs="text", outputs="text")
gradio_interface.launch()