Spaces:
Running
Running
Commit
·
4a1f80e
1
Parent(s):
32c5a96
v.0.1 - UI
Browse files
app.py
CHANGED
|
@@ -2045,7 +2045,7 @@ with gr.Blocks(theme=quant_theme, css="""
|
|
| 2045 |
# Main content
|
| 2046 |
with gr.Row():
|
| 2047 |
# Left panel: Chat
|
| 2048 |
-
with gr.Column(scale=
|
| 2049 |
with gr.Column(elem_classes="container"):
|
| 2050 |
gr.Markdown( # Updated instructions
|
| 2051 |
"""
|
|
@@ -2064,7 +2064,7 @@ with gr.Blocks(theme=quant_theme, css="""
|
|
| 2064 |
|
| 2065 |
chatbot = gr.Chatbot(
|
| 2066 |
label="Quant Intelli+ ⚽️",
|
| 2067 |
-
height=
|
| 2068 |
avatar_images=(None, "https://img.icons8.com/color/48/artificial-intelligence.png"),
|
| 2069 |
type='messages'
|
| 2070 |
)
|
|
@@ -2079,7 +2079,7 @@ with gr.Blocks(theme=quant_theme, css="""
|
|
| 2079 |
msg_textbox = gr.Textbox(
|
| 2080 |
label="Your Message",
|
| 2081 |
placeholder="Enter odds or type a question...",
|
| 2082 |
-
scale=
|
| 2083 |
lines=2
|
| 2084 |
)
|
| 2085 |
submit_btn = gr.Button("Send", variant="primary", scale=1)
|
|
|
|
| 2045 |
# Main content
|
| 2046 |
with gr.Row():
|
| 2047 |
# Left panel: Chat
|
| 2048 |
+
with gr.Column(scale=9):
|
| 2049 |
with gr.Column(elem_classes="container"):
|
| 2050 |
gr.Markdown( # Updated instructions
|
| 2051 |
"""
|
|
|
|
| 2064 |
|
| 2065 |
chatbot = gr.Chatbot(
|
| 2066 |
label="Quant Intelli+ ⚽️",
|
| 2067 |
+
height=700,
|
| 2068 |
avatar_images=(None, "https://img.icons8.com/color/48/artificial-intelligence.png"),
|
| 2069 |
type='messages'
|
| 2070 |
)
|
|
|
|
| 2079 |
msg_textbox = gr.Textbox(
|
| 2080 |
label="Your Message",
|
| 2081 |
placeholder="Enter odds or type a question...",
|
| 2082 |
+
scale=10,
|
| 2083 |
lines=2
|
| 2084 |
)
|
| 2085 |
submit_btn = gr.Button("Send", variant="primary", scale=1)
|