Update .chainlit/config.toml
Browse files- .chainlit/config.toml +52 -25
.chainlit/config.toml
CHANGED
@@ -1,37 +1,64 @@
|
|
1 |
[project]
|
|
|
|
|
2 |
public = true
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
user_env = []
|
5 |
-
session_timeout = 3600
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
latex = false
|
10 |
-
auto_tag_thread = true
|
11 |
-
edit_message = true
|
12 |
-
cookie_auth = true
|
13 |
|
14 |
[UI]
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
default_expand_messages = false
|
17 |
-
hide_cot = true
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
[UI.theme.dark]
|
20 |
-
background = "#
|
21 |
-
paper = "#
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
light = "#5DADE2"
|
29 |
-
|
30 |
-
[UI.theme.colors]
|
31 |
-
success = "#2ECC71"
|
32 |
-
error = "#E74C3C"
|
33 |
-
warning = "#F39C12"
|
34 |
-
info = "#3498DB"
|
35 |
|
36 |
[meta]
|
37 |
generated_by = "0.6.2"
|
|
|
|
1 |
[project]
|
2 |
+
# If true (default), the app will be available to anonymous users.
|
3 |
+
# If false, users will need to authenticate and be part of the project to use the app.
|
4 |
public = true
|
5 |
+
|
6 |
+
# The project ID (found on https://cloud.chainlit.io).
|
7 |
+
# The project ID is required when public is set to false or when using the cloud database.
|
8 |
+
#id = ""
|
9 |
+
|
10 |
+
# Uncomment if you want to persist the chats.
|
11 |
+
# local will create a database in your .chainlit directory (requires node.js installed).
|
12 |
+
# cloud will use the Chainlit cloud database.
|
13 |
+
# custom will load use your custom client.
|
14 |
+
database = "local"
|
15 |
+
|
16 |
+
# Whether to enable telemetry (default: true). No personal data is collected.
|
17 |
+
enable_telemetry = true
|
18 |
+
|
19 |
+
# List of environment variables to be provided by each user to use the app.
|
20 |
user_env = []
|
|
|
21 |
|
22 |
+
# Duration (in seconds) during which the session is saved when the connection is lost
|
23 |
+
session_timeout = 3600
|
|
|
|
|
|
|
|
|
24 |
|
25 |
[UI]
|
26 |
+
# Name of the app and chatbot.
|
27 |
+
name = "Daysoff CSA | booking-api-beta"
|
28 |
+
|
29 |
+
# Description of the app and chatbot. This is used for HTML tags.
|
30 |
+
# description = ""
|
31 |
+
|
32 |
+
# The default value for the expand messages settings.
|
33 |
default_expand_messages = false
|
|
|
34 |
|
35 |
+
# Hide the chain of thought details from the user in the UI.
|
36 |
+
hide_cot = false
|
37 |
+
|
38 |
+
# Link to your github repo. This will add a github button in the UI's header.
|
39 |
+
# github = ""
|
40 |
+
|
41 |
+
# Override default MUI light theme. (Check theme.ts)
|
42 |
+
[UI.theme.light]
|
43 |
+
#background = "#FAFAFA"
|
44 |
+
#paper = "#FFFFFF"
|
45 |
+
|
46 |
+
[UI.theme.light.primary]
|
47 |
+
#main = "#F80061"
|
48 |
+
#dark = "#980039"
|
49 |
+
#light = "#FFE7EB"
|
50 |
+
|
51 |
+
# Override default MUI dark theme. (Check theme.ts)
|
52 |
[UI.theme.dark]
|
53 |
+
#background = "#FAFAFA"
|
54 |
+
#paper = "#FFFFFF"
|
55 |
+
|
56 |
+
[UI.theme.dark.primary]
|
57 |
+
#main = "#F80061"
|
58 |
+
#dark = "#980039"
|
59 |
+
#light = "#FFE7EB"
|
60 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
[meta]
|
63 |
generated_by = "0.6.2"
|
64 |
+
|