Upload config.toml
Browse files- .chainlit/config.toml +63 -0
.chainlit/config.toml
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 = "Chatbot"
|
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"
|