Spaces:
Runtime error
Runtime error
File size: 276 Bytes
b52a718 217a305 b52a718 ebb322e b52a718 217a305 c05a9c3 b52a718 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import random
import gradio as gr
def prompt(message, history):
return random.choice(["Yes", "No"])
demo = gr.ChatInterface(prompt,
title="codeBot",
description="Ask me a question"
retry_btn="Retry",
undo_btn=None,
clear_btn="Clear")
demo.launch() |