docker-test / app.py
JinwangMok's picture
Update app.py
873f88a verified
import gradio as gr
def respond(message, _):
content = "์•ต๋ฌด์ƒˆ: " + message
response = ""
for token in content:
response += token
yield response
demo = gr.ChatInterface(respond)
if __name__ == "__main__":
demo.launch()