bdragert27 commited on
Commit
c98fefb
·
verified ·
1 Parent(s): 6f81933

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,10 +1,10 @@
1
  import gradio as gr
2
  #import lines go at the top! Any libraries I need to import go up here ^^
3
 
4
-
5
- def echo(message, history)
6
  return message
 
7
  chatbot = gr.ChatInterface(echo)
8
- #defining my chatbot so thta the user can interact, see their conversation history, and send new messages
9
 
10
  chatbot.launch()
 
1
  import gradio as gr
2
  #import lines go at the top! Any libraries I need to import go up here ^^
3
 
4
+ def echo(message, history):
 
5
  return message
6
+
7
  chatbot = gr.ChatInterface(echo)
8
+ #defining my chatbot so that the user can interact, see their conversation history, and send new messages
9
 
10
  chatbot.launch()