Update app.py
Browse files
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 |
-
|
51 |
-
|
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 |
|