CoolFace
Apppublic

NEUBITMF/InstructionTuning

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
app.py9 linesDownload Raw Back to root
1import gradio as gr2 3def greet(name):4    return "Hello " + name + "!!"5 6 7 8iface = gr.Interface(fn=greet, inputs="text",  outputs="text", )9iface.launch(share=True)