2025-12-25 14:54:33 +00:00
[ project ]
2025-12-29 12:39:29 +00:00
# Whether to enable telemetry (default: true). No personal data is collected.
enable_telemetry = true
# List of environment variables to be provided by each user to use the app.
2025-12-25 14:54:33 +00:00
user_env = [ ]
2025-12-29 12:39:29 +00:00
# Duration (in seconds) during which the session is saved when the connection is lost
session_timeout = 3600
2025-12-25 14:54:33 +00:00
2025-12-29 12:39:29 +00:00
# Enable third parties caching (e.g LangChain cache)
2025-12-25 14:54:33 +00:00
cache = false
2025-12-29 12:39:29 +00:00
# Authorized origins
2025-12-25 14:54:33 +00:00
allow_origins = [ "*" ]
2025-12-29 12:39:29 +00:00
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
# follow_symlink = false
2025-12-25 14:54:33 +00:00
[ features ]
2025-12-29 12:39:29 +00:00
# Process and display HTML in messages. This can be a security risk (see https://stackoverflow.com/questions/19603097/why-is-it-dangerous-to-render-user-generated-html-or-javascript)
2025-12-25 14:54:33 +00:00
unsafe_allow_html = false
2025-12-29 12:39:29 +00:00
# Process and display mathematical expressions. This can clash with "$" characters in messages.
latex = false
2025-12-25 14:54:33 +00:00
2025-12-29 12:39:29 +00:00
# Automatically tag threads with the current chat profile (if a chat profile is used)
2025-12-25 14:54:33 +00:00
auto_tag_thread = true
2025-12-29 12:39:29 +00:00
# Allow users to edit their own messages
edit_message = true
2025-12-25 14:54:33 +00:00
2025-12-29 12:39:29 +00:00
# Authorize users to spontaneously upload files with messages
2025-12-25 14:54:33 +00:00
[ features . spontaneous_file_upload ]
2025-12-29 12:39:29 +00:00
enabled = true
accept = [ "*/*" ]
max_files = 20
max_size_mb = 500
2025-12-25 14:54:33 +00:00
[ features . audio ]
2025-12-29 12:39:29 +00:00
# Threshold for audio recording
min_decibels = -45
# Delay for the user to start speaking in MS
initial_silence_timeout = 3000
# Delay for the user to continue speaking in MS. If the user stops speaking for this duration, the recording will stop.
silence_timeout = 1500
# Above this duration (MS), the recording will forcefully stop.
max_duration = 15000
# Duration of the audio chunks in MS
chunk_duration = 1000
# Sample rate of the audio
sample_rate = 44100
2025-12-25 14:54:33 +00:00
[ UI ]
2025-12-29 12:39:29 +00:00
# Name of the assistant.
name = "Assistant"
# Description of the assistant. This is used for HTML tags.
# description = ""
# Large size content are by default collapsed for a cleaner ui
default_collapse_content = true
# Chain of Thought (CoT) display mode. Can be "hidden", "tool_call" or "full".
cot = "full"
# Link to your github repo. This will add a github button in the UI's header.
# github = ""
# Specify a CSS file that can be used to customize the user interface.
# The CSS file can be served from the public directory or via an external link.
# custom_css = "/public/test.css"
# Specify a Javascript file that can be used to customize the user interface.
# The Javascript file can be served from the public directory.
# custom_js = "/public/test.js"
# Specify a custom font url.
# custom_font = "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
# Specify a custom meta image url.
# custom_meta_image_url = "https://chainlit-cloud.s3.eu-west-3.amazonaws.com/logo/chainlit_banner.png"
# Specify a custom build directory for the frontend.
# This can be used to customize the frontend code.
# Be careful: If this is a relative path, it should not start with a slash.
# custom_build = "./public/build"
[ UI . theme ]
default = "dark"
#layout = "wide"
#font_family = "Inter, sans-serif"
# Override default MUI light theme. (Check theme.ts)
[ UI . theme . light ]
#background = "#FAFAFA"
#paper = "#FFFFFF"
[ UI . theme . light . primary ]
#main = "#F80061"
#dark = "#980039"
#light = "#FFE7EB"
[ UI . theme . light . text ]
#primary = "#212121"
#secondary = "#616161"
# Override default MUI dark theme. (Check theme.ts)
[ UI . theme . dark ]
#background = "#FAFAFA"
#paper = "#FFFFFF"
[ UI . theme . dark . primary ]
#main = "#F80061"
#dark = "#980039"
#light = "#FFE7EB"
[ UI . theme . dark . text ]
#primary = "#EEEEEE"
#secondary = "#BDBDBD"
2025-12-25 14:54:33 +00:00
[ meta ]
2025-12-29 05:50:06 +00:00
generated_by = "1.3.2"