copilotdatast / .chainlit /config.toml
datacipen's picture
Update .chainlit/config.toml
fe09c3e verified
raw
history blame contribute delete
No virus
2.33 kB
[project]
# 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.
user_env = []
# Duration (in seconds) during which the session is saved when the connection is lost
session_timeout = 3600
# Enable third parties caching (e.g LangChain cache)
cache = false
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
# follow_symlink = false
[features]
# Show the prompt playground
prompt_playground = true
unsafe_allow_html = true
latex = false
# Authorize users to upload files with messages
[features.multi_modal]
enabled = false
accept = ["*/*"]
max_files = 20
max_size_mb = 500
# Allows user to use speech to text
[features.speech_to_text]
enabled = false
# See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
# language = "en-US"
auto_tag_thread = true
[UI]
# Name of the app and chatbot.
name = "Datapcc Chain"
# Show the readme while the conversation is empty.
show_readme_as_default = true
# Description of the app and chatbot. This is used for HTML tags.
# description = "Datapcc Chain"
# Large size content are by default collapsed for a cleaner ui
default_collapse_content = true
# The default value for the expand messages settings.
default_expand_messages = true
# Hide the chain of thought details from the user in the UI.
hide_cot = false
# 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/stylesheet.css"
# Override default MUI light theme. (Check theme.ts)
[UI.theme.light]
#background = "#FAFAFA"
#paper = "#FFFFFF"
background = "#212121"
#paper = "#586e75"
[UI.theme.light.primary]
main = "#00fff3"
dark = "#00fff3"
#light = "#FFE7EB"
# Override default MUI dark theme. (Check theme.ts)
[UI.theme.dark]
background = "#212121"
#paper = "#586e75"
[UI.theme.dark.primary]
main = "#00fff3"
dark = "#00fff3"
light = "#FFE7EB"
[meta]
generated_by = "0.7.603"