Spaces:
Sleeping
Sleeping
Shankar
commited on
Commit
·
d2a05eb
1
Parent(s):
d664722
fix chatbot pos 3
Browse files
app.py
CHANGED
@@ -118,7 +118,6 @@ with gr.Blocks(
|
|
118 |
border-radius: 8px;
|
119 |
padding: 10px;
|
120 |
overflow: visible;
|
121 |
-
z-index: 1001;
|
122 |
}
|
123 |
#open-chat-btn {
|
124 |
position: fixed;
|
@@ -135,7 +134,7 @@ with gr.Blocks(
|
|
135 |
chat_panel = gr.Column(visible=True, elem_classes="chat-panel")
|
136 |
|
137 |
with chat_panel:
|
138 |
-
gr.Markdown("### Financial Agent")
|
139 |
chatbot_state = gr.State([])
|
140 |
chatbot_ui = gr.Chatbot(type="messages")
|
141 |
chatbot_input = gr.Textbox(
|
|
|
118 |
border-radius: 8px;
|
119 |
padding: 10px;
|
120 |
overflow: visible;
|
|
|
121 |
}
|
122 |
#open-chat-btn {
|
123 |
position: fixed;
|
|
|
134 |
chat_panel = gr.Column(visible=True, elem_classes="chat-panel")
|
135 |
|
136 |
with chat_panel:
|
137 |
+
gr.Markdown("### Financial Agent", height=200)
|
138 |
chatbot_state = gr.State([])
|
139 |
chatbot_ui = gr.Chatbot(type="messages")
|
140 |
chatbot_input = gr.Textbox(
|