Update app.py
Browse files
app.py
CHANGED
@@ -98,8 +98,7 @@ with gr.Blocks() as demo:
|
|
98 |
# Initialize chatbot with first message
|
99 |
chatbot = gr.Chatbot(
|
100 |
value=[("", INITIAL_PROMPT)], # Initial system message
|
101 |
-
height=600
|
102 |
-
scroll=True # Allow scrolling for long responses
|
103 |
)
|
104 |
|
105 |
# Maintain chat history state
|
|
|
98 |
# Initialize chatbot with first message
|
99 |
chatbot = gr.Chatbot(
|
100 |
value=[("", INITIAL_PROMPT)], # Initial system message
|
101 |
+
height=600 # Increased height for better visibility
|
|
|
102 |
)
|
103 |
|
104 |
# Maintain chat history state
|