DiffuSynth / app_chatbot.py
WeixuanYuan's picture
Update app_chatbot.py
6b134fc verified
raw
history blame contribute delete
209 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
# ๆŒ‡ๅฎšๆœ‰ๆƒ้™็š„่ทฏๅพ„
demo = gr.Interface(fn=greet, inputs="text", outputs="text", flagging_dir="/home/user/flagged")
demo.launch()