a6d228d
1
2
3
4
5
6
7
8
9
import gradio as gr import random def random_response(message, history): return random.choice(['y', 'n']) if __name__ == "__main__": demo = gr.ChatInterface(random_response) demo.launch()