FinalProject / app.py
HakanKilic01's picture
third commit
c05a9c3
raw
history blame
230 Bytes
from os import name
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")
demo.launch()