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