Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,8 +1,13 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
| 3 |
def echo(message, history):
|
| 4 |
return(message)
|
| 5 |
-
|
| 6 |
-
chatbot = gr.ChatInterface(echo)
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
chatbot.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import random
|
| 3 |
def echo(message, history):
|
| 4 |
return(message)
|
|
|
|
|
|
|
| 5 |
|
| 6 |
+
def yes_no(message, history):
|
| 7 |
+
responses = ["Yes" , "No"]
|
| 8 |
+
return random.choice(responses)
|
| 9 |
+
|
| 10 |
+
print("Hello World!")
|
| 11 |
+
|
| 12 |
+
chatbot = gr.ChatInterface(yes_no, type="messages")
|
| 13 |
chatbot.launch()
|