Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -70,6 +70,11 @@ body {
|
|
| 70 |
"""
|
| 71 |
|
| 72 |
# Create a Gradio chat interface with custom CSS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
demo = gr.ChatInterface(
|
| 74 |
fn=respond,
|
| 75 |
additional_inputs=[
|
|
|
|
| 70 |
"""
|
| 71 |
|
| 72 |
# Create a Gradio chat interface with custom CSS
|
| 73 |
+
demo = gr.ChatInterface(
|
| 74 |
+
title="My Chatbot", # Set the title here
|
| 75 |
+
fn=respond,
|
| 76 |
+
# ... (other parameters)
|
| 77 |
+
)
|
| 78 |
demo = gr.ChatInterface(
|
| 79 |
fn=respond,
|
| 80 |
additional_inputs=[
|