Emotion-LLaMA / app.py
ZebangCheng's picture
add nice to meet you
15ef9f5
raw
history blame
178 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "! I'm gradio, nice to meet you !"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()