phi-1_5 / app.py
gr-repository
./app.py
5dedd74
raw
history blame contribute delete
169 Bytes
import gradio as gr
def greet(name):
return "We are creating this Space, stay tuned!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()