Spaces:
Sleeping
Sleeping
File size: 545 Bytes
2d8b8bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Chainlit configuration file
chainlit_version: 0.5.0
# Interface configuration
interface:
theme: light
default_collapse_content: false
default_expand_messages: true
show_file_upload: true
# Server configuration
server:
port: 8000
# Features configuration
features:
multi_modal: true
file_upload:
max_size_mb: 20
allowed_types:
- "image/png"
- "image/jpeg"
- "image/gif"
- "application/pdf"
- "text/plain"
- "application/vnd.openxmlformats-officedocument.presentationml.presentation" |