File size: 202 Bytes
14df1c4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
message = "hi hello world"

import gradio as gr
def random_response(message, history):
  return message

demo = gr.ChatInterface(random_response)
if __name__ == "__main__":
    demo.launch(debug=True)