AashitaK commited on
Commit
51d8b0a
·
verified ·
1 Parent(s): d422bfd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -46,10 +46,10 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
46
  with gr.Blocks() as demo:
47
  gr.Markdown("AI chatbot")
48
  gr.ChatInterface(
49
- respond#,
50
- # additional_inputs=[
51
- # gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
52
- # ],
53
  )
54
 
55
 
 
46
  with gr.Blocks() as demo:
47
  gr.Markdown("AI chatbot")
48
  gr.ChatInterface(
49
+ respond,
50
+ additional_inputs=[
51
+ gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
52
+ ],
53
  )
54
 
55