q_and_a_test / App.py
esiol's picture
Update App.py
423dbdc
raw
history blame contribute delete
159 Bytes
import gradio as gr
import os
def get_the_answer(message, history):
return message + ' received!'
demo = gr.ChatInterface(get_the_answer)
demo.launch()