ai-match / app.py
LucasVCS's picture
Upload folder using huggingface_hub
ac19314 verified
Raw
History Blame Contribute Delete
212 Bytes
import random
import gradio as gr
def random_response(message, history):
return random.choice(["Yes", "No"])
demo = gr.ChatInterface(random_response)
if __name__ == "__main__":
demo.launch(share=True)