You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Whether to enable telemetry (default: true). No personal data is collected.
3
+
enable_telemetry = true
4
+
5
+
6
+
# List of environment variables to be provided by each user to use the app.
7
+
user_env = []
8
+
9
+
# Duration (in seconds) during which the session is saved when the connection is lost
10
+
session_timeout = 3600
11
+
12
+
# Enable third parties caching (e.g LangChain cache)
13
+
cache = false
14
+
15
+
# Authorized origins
16
+
allow_origins = ["*"]
17
+
18
+
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
19
+
# follow_symlink = false
20
+
21
+
[features]
22
+
# 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)
23
+
unsafe_allow_html = false
24
+
25
+
# Process and display mathematical expressions. This can clash with "$" characters in messages.
26
+
latex = false
27
+
28
+
# Automatically tag threads with the current chat profile (if a chat profile is used)
29
+
auto_tag_thread = true
30
+
31
+
# Authorize users to spontaneously upload files with messages
32
+
[features.spontaneous_file_upload]
33
+
enabled = true
34
+
accept = ["*/*"]
35
+
max_files = 20
36
+
max_size_mb = 500
37
+
38
+
[features.audio]
39
+
# Threshold for audio recording
40
+
min_decibels = -45
41
+
# Delay for the user to start speaking in MS
42
+
initial_silence_timeout = 3000
43
+
# Delay for the user to continue speaking in MS. If the user stops speaking for this duration, the recording will stop.
44
+
silence_timeout = 1500
45
+
# Above this duration (MS), the recording will forcefully stop.
46
+
max_duration = 15000
47
+
# Duration of the audio chunks in MS
48
+
chunk_duration = 1000
49
+
# Sample rate of the audio
50
+
sample_rate = 44100
51
+
52
+
[UI]
53
+
# Name of the assistant.
54
+
name = "Assistant"
55
+
56
+
# Description of the assistant. This is used for HTML tags.
57
+
# description = ""
58
+
59
+
# Large size content are by default collapsed for a cleaner ui
60
+
default_collapse_content = true
61
+
62
+
# Hide the chain of thought details from the user in the UI.
63
+
hide_cot = false
64
+
65
+
# Link to your github repo. This will add a github button in the UI's header.
66
+
# github = ""
67
+
68
+
# Specify a CSS file that can be used to customize the user interface.
69
+
# The CSS file can be served from the public directory or via an external link.
70
+
# custom_css = "/public/test.css"
71
+
72
+
# Specify a Javascript file that can be used to customize the user interface.
73
+
# The Javascript file can be served from the public directory.
Hi there, Developer! 👋 We're excited to have you on board. Chainlit is a powerful tool designed to help you prototype, debug and share applications built on top of LLMs.
4
+
5
+
## Useful Links 🔗
6
+
7
+
-**Documentation:** Get started with our comprehensive [Chainlit Documentation](https://docs.chainlit.io) 📚
8
+
-**Discord Community:** Join our friendly [Chainlit Discord](https://discord.gg/k73SQ3FyUh) to ask questions, share your projects, and connect with other developers! 💬
9
+
10
+
We can't wait to see what you create with Chainlit! Happy coding! 💻😊
11
+
12
+
## Welcome screen
13
+
14
+
To modify the welcome screen, edit the `chainlit.md` file at the root of your project. If you do not want a welcome screen, just leave this file empty.
0 commit comments