Spaces:
Runtime error
Runtime error
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() |