Spaces:
Running
Running
File size: 387 Bytes
f21eab9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
import random
def random_response(message, history):
return random.choice(["Hi!", "Hello!", "Greetings!"])
with gr.Blocks() as demo:
gr.ChatInterface(
random_response,
title="Greeting Bot",
description="Ask anything and receive a nice greeting!",
)
gr.DeepLinkButton()
if __name__ == "__main__":
demo.launch(share=True)
|