T3lli commited on
Commit
89d1457
·
verified ·
1 Parent(s): d06eedf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -67,12 +67,13 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
67
  theme = "soft",
68
  )"""
69
  with gr.Blocks() as demo:
70
- title = name
71
- chat_interface = gr.ChatInterface(
72
- respond,
73
- title=name, # Dynamically set the title
74
-
75
- )
 
76
 
77
  if __name__ == "__main__":
78
 
 
67
  theme = "soft",
68
  )"""
69
  with gr.Blocks() as demo:
70
+ 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
 
78
  if __name__ == "__main__":
79