Spaces:
Sleeping
Sleeping
Commit ·
bde6480
1
Parent(s): 6a1aadf
change to 3.13
Browse files
app.css
CHANGED
|
@@ -288,6 +288,7 @@ body,
|
|
| 288 |
#chatbot .message.user .prose p,
|
| 289 |
#chatbot .message.user > div {
|
| 290 |
display: inline-block !important;
|
|
|
|
| 291 |
max-width: 100% !important;
|
| 292 |
white-space: pre-wrap !important;
|
| 293 |
word-break: normal !important;
|
|
|
|
| 288 |
#chatbot .message.user .prose p,
|
| 289 |
#chatbot .message.user > div {
|
| 290 |
display: inline-block !important;
|
| 291 |
+
width: auto !important;
|
| 292 |
max-width: 100% !important;
|
| 293 |
white-space: pre-wrap !important;
|
| 294 |
word-break: normal !important;
|
app.py
CHANGED
|
@@ -317,8 +317,8 @@ with gr.Blocks(**blocks_kwargs) as demo:
|
|
| 317 |
|
| 318 |
if __name__ == "__main__":
|
| 319 |
launch_kwargs = {
|
| 320 |
-
"server_name": "0.0.0.0",
|
| 321 |
-
"server_port": int(os.environ.get("PORT", "7862")),
|
| 322 |
}
|
| 323 |
launch_kwargs.update(launch_extra_kwargs)
|
| 324 |
|
|
|
|
| 317 |
|
| 318 |
if __name__ == "__main__":
|
| 319 |
launch_kwargs = {
|
| 320 |
+
# "server_name": "0.0.0.0",
|
| 321 |
+
# "server_port": int(os.environ.get("PORT", "7862")),
|
| 322 |
}
|
| 323 |
launch_kwargs.update(launch_extra_kwargs)
|
| 324 |
|