commented out most of the config
Browse files- .chainlit/config.toml +15 -15
.chainlit/config.toml
CHANGED
@@ -1,59 +1,59 @@
|
|
1 |
[project]
|
2 |
# Whether to enable telemetry (default: true). No personal data is collected.
|
3 |
-
enable_telemetry = true
|
4 |
|
5 |
[meta]
|
6 |
generated_by = "1.0.0"
|
7 |
|
8 |
# List of environment variables to be provided by each user to use the app.
|
9 |
-
user_env = []
|
10 |
|
11 |
# Duration (in seconds) during which the session is saved when the connection is lost
|
12 |
-
session_timeout = 3600
|
13 |
|
14 |
# Enable third parties caching (e.g LangChain cache)
|
15 |
-
cache = false
|
16 |
|
17 |
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
18 |
# follow_symlink = false
|
19 |
|
20 |
[features]
|
21 |
# Show the prompt playground
|
22 |
-
prompt_playground = true
|
23 |
|
24 |
# 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)
|
25 |
-
unsafe_allow_html = false
|
26 |
|
27 |
# Process and display mathematical expressions. This can clash with "$" characters in messages.
|
28 |
-
latex = false
|
29 |
|
30 |
# Authorize users to upload files with messages
|
31 |
-
multi_modal = true
|
32 |
|
33 |
# Allows user to use speech to text
|
34 |
-
[features.speech_to_text]
|
35 |
-
enabled = false
|
36 |
-
# See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
|
37 |
-
# language = "en-US"
|
38 |
|
39 |
[UI]
|
40 |
# Name of the app and chatbot.
|
41 |
name = "Chatbot"
|
42 |
|
43 |
# Show the readme while the conversation is empty.
|
44 |
-
show_readme_as_default = true
|
45 |
|
46 |
# Description of the app and chatbot. This is used for HTML tags.
|
47 |
# description = ""
|
48 |
|
49 |
# Large size content are by default collapsed for a cleaner ui
|
50 |
-
default_collapse_content = true
|
51 |
|
52 |
# The default value for the expand messages settings.
|
53 |
default_expand_messages = false
|
54 |
|
55 |
# Hide the chain of thought details from the user in the UI.
|
56 |
-
hide_cot = false
|
57 |
|
58 |
# Link to your github repo. This will add a github button in the UI's header.
|
59 |
# github = ""
|
|
|
1 |
[project]
|
2 |
# Whether to enable telemetry (default: true). No personal data is collected.
|
3 |
+
#enable_telemetry = true
|
4 |
|
5 |
[meta]
|
6 |
generated_by = "1.0.0"
|
7 |
|
8 |
# List of environment variables to be provided by each user to use the app.
|
9 |
+
#user_env = []
|
10 |
|
11 |
# Duration (in seconds) during which the session is saved when the connection is lost
|
12 |
+
#session_timeout = 3600
|
13 |
|
14 |
# Enable third parties caching (e.g LangChain cache)
|
15 |
+
#cache = false
|
16 |
|
17 |
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
18 |
# follow_symlink = false
|
19 |
|
20 |
[features]
|
21 |
# Show the prompt playground
|
22 |
+
#prompt_playground = true
|
23 |
|
24 |
# 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)
|
25 |
+
#unsafe_allow_html = false
|
26 |
|
27 |
# Process and display mathematical expressions. This can clash with "$" characters in messages.
|
28 |
+
#latex = false
|
29 |
|
30 |
# Authorize users to upload files with messages
|
31 |
+
#multi_modal = true
|
32 |
|
33 |
# Allows user to use speech to text
|
34 |
+
#[features.speech_to_text]
|
35 |
+
# enabled = false
|
36 |
+
# # See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
|
37 |
+
# # language = "en-US"
|
38 |
|
39 |
[UI]
|
40 |
# Name of the app and chatbot.
|
41 |
name = "Chatbot"
|
42 |
|
43 |
# Show the readme while the conversation is empty.
|
44 |
+
#show_readme_as_default = true
|
45 |
|
46 |
# Description of the app and chatbot. This is used for HTML tags.
|
47 |
# description = ""
|
48 |
|
49 |
# Large size content are by default collapsed for a cleaner ui
|
50 |
+
#default_collapse_content = true
|
51 |
|
52 |
# The default value for the expand messages settings.
|
53 |
default_expand_messages = false
|
54 |
|
55 |
# Hide the chain of thought details from the user in the UI.
|
56 |
+
#hide_cot = false
|
57 |
|
58 |
# Link to your github repo. This will add a github button in the UI's header.
|
59 |
# github = ""
|