Spaces:
Runtime error
Runtime error
File size: 227 Bytes
24988f9 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
def echo(message, history):
print(message)
print('---')
print(history)
return message
demo = gr.ChatInterface(fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot")
demo.launch() |