Subha95 commited on
Commit
7e2ef9f
·
verified ·
1 Parent(s): fcbada7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
- import gradio as gr
2
  from ai_assistant import get_response
 
3
 
4
  def respond(message, history):
5
- return get_response(message, history)
6
 
7
  chatbot = gr.ChatInterface(
8
  respond,
 
 
1
  from ai_assistant import get_response
2
+ import gradio as gr
3
 
4
  def respond(message, history):
5
+ return get_response(message, history) # history is passed, ignored for now
6
 
7
  chatbot = gr.ChatInterface(
8
  respond,