Spaces:
Sleeping
Sleeping
File size: 150 Bytes
6a2bfa7 |
1 2 3 4 5 6 7 |
import gradio as gr
def greet(name):
return open('ciao.txt').read()
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |