CoolFace
Apppublic

ICaPiCo/Dolphin_7b_test_WIP

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