increase maxMessageSize from 200 to 300
Browse files- .streamlit/config.toml +11 -1
.streamlit/config.toml
CHANGED
|
@@ -12,4 +12,14 @@ primaryColor = "#005AFF"
|
|
| 12 |
backgroundColor = "#F0F2F6"
|
| 13 |
secondaryBackgroundColor = "#E6E9EF"
|
| 14 |
textColor = "#1C1C1E"
|
| 15 |
-
linkColor = "#005AFF"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
backgroundColor = "#F0F2F6"
|
| 13 |
secondaryBackgroundColor = "#E6E9EF"
|
| 14 |
textColor = "#1C1C1E"
|
| 15 |
+
linkColor = "#005AFF"
|
| 16 |
+
|
| 17 |
+
[server]
|
| 18 |
+
# Max size, in megabytes, for files uploaded with the file_uploader.
|
| 19 |
+
# Default: 200
|
| 20 |
+
#maxUploadSize = 500
|
| 21 |
+
|
| 22 |
+
# Max size, in megabytes, of messages that can be sent via the WebSocket
|
| 23 |
+
# connection.
|
| 24 |
+
# Default: 200
|
| 25 |
+
maxMessageSize = 300
|