Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,7 @@ with gr.Blocks() as demo:
|
|
71 |
title_input = gr.Textbox(label="Enter Title", value="Initial Title")
|
72 |
chat_interface = gr.ChatInterface(
|
73 |
respond,
|
74 |
-
title=title_input, # Dynamically set the title
|
75 |
additional_inputs=[title_input], # Pass the title input to the `respond` function
|
76 |
)
|
77 |
|
|
|
71 |
title_input = gr.Textbox(label="Enter Title", value="Initial Title")
|
72 |
chat_interface = gr.ChatInterface(
|
73 |
respond,
|
74 |
+
title="title_input", # Dynamically set the title
|
75 |
additional_inputs=[title_input], # Pass the title input to the `respond` function
|
76 |
)
|
77 |
|