Spaces:
Sleeping
Sleeping
SHAMIL SHAHBAZ AWAN
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -54,7 +54,7 @@ with gr.Blocks(theme="soft") as demo:
|
|
| 54 |
)
|
| 55 |
|
| 56 |
with gr.Row():
|
| 57 |
-
with gr.Column(scale=
|
| 58 |
chat = gr.ChatInterface(
|
| 59 |
respond,
|
| 60 |
additional_inputs=[
|
|
@@ -81,19 +81,19 @@ with gr.Blocks(theme="soft") as demo:
|
|
| 81 |
background-size: cover;
|
| 82 |
font-family: Arial, sans-serif;
|
| 83 |
}
|
| 84 |
-
|
| 85 |
.gr-textbox {
|
| 86 |
border: 1px solid #e1e4e8;
|
| 87 |
border-radius: 5px;
|
| 88 |
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
|
| 89 |
transition: all 0.3s ease;
|
| 90 |
}
|
| 91 |
-
|
| 92 |
.gr-textbox:hover {
|
| 93 |
transform: scale(1.02);
|
| 94 |
border-color: #6fc3df;
|
| 95 |
}
|
| 96 |
-
|
| 97 |
.gr-slider {
|
| 98 |
display: none; /* Hides sliders from the interface */
|
| 99 |
}
|
|
|
|
| 54 |
)
|
| 55 |
|
| 56 |
with gr.Row():
|
| 57 |
+
with gr.Column(scale=6): # Increased scale value to make the chat interface bigger
|
| 58 |
chat = gr.ChatInterface(
|
| 59 |
respond,
|
| 60 |
additional_inputs=[
|
|
|
|
| 81 |
background-size: cover;
|
| 82 |
font-family: Arial, sans-serif;
|
| 83 |
}
|
| 84 |
+
|
| 85 |
.gr-textbox {
|
| 86 |
border: 1px solid #e1e4e8;
|
| 87 |
border-radius: 5px;
|
| 88 |
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
|
| 89 |
transition: all 0.3s ease;
|
| 90 |
}
|
| 91 |
+
|
| 92 |
.gr-textbox:hover {
|
| 93 |
transform: scale(1.02);
|
| 94 |
border-color: #6fc3df;
|
| 95 |
}
|
| 96 |
+
|
| 97 |
.gr-slider {
|
| 98 |
display: none; /* Hides sliders from the interface */
|
| 99 |
}
|