aditijuluri commited on
Commit
88af65f
·
verified ·
1 Parent(s): 77d2e1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,9 +5,9 @@ def echo(message, history):
5
  return(message)
6
 
7
  def yes_no(message,history):
8
- responses = ["yes!", "no!"]
9
  return random.choice(responses)
10
 
11
- chatbot = gr.ChatInterface(yes_no, type="messages", title = "aditigpt", description = "worlds most accurate chatbot!", theme = "earneleh/paris")
12
 
13
  chatbot.launch()
 
5
  return(message)
6
 
7
  def yes_no(message,history):
8
+ responses = ["all signs point to yes", "outlook is good", "not likely", "ask again later", "perhaps", "my sources say no", "you may rely on it"]
9
  return random.choice(responses)
10
 
11
+ chatbot = gr.ChatInterface(yes_no, type="messages", title = "aditigpt", description = "worlds most accurate chatbot!", theme = "Taithrah/Minimal")
12
 
13
  chatbot.launch()