Upload config.toml
Browse files- .chainlit/config.toml +95 -0
.chainlit/config.toml
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
[project]
|
4 |
+
|
5 |
+
# If true (default), the app will be available to anonymous users.
|
6 |
+
# If false, users will need to authenticate and be part of the project to use the app.
|
7 |
+
public = true
|
8 |
+
|
9 |
+
# The project ID (found on https://cloud.chainlit.io).
|
10 |
+
# The project ID is required when public is set to false or when using the cloud database.
|
11 |
+
#id = ""
|
12 |
+
|
13 |
+
# Uncomment if you want to persist the chats.
|
14 |
+
# local will create a database in your .chainlit directory (requires node.js installed).
|
15 |
+
# cloud will use the Chainlit cloud database.
|
16 |
+
# custom will load use your custom client.
|
17 |
+
database = "local"
|
18 |
+
|
19 |
+
# Whether to enable telemetry (default: true). No personal data is collected.
|
20 |
+
enable_telemetry = false
|
21 |
+
|
22 |
+
# Enable third parties caching (e.g LangChain cache)
|
23 |
+
cache = false
|
24 |
+
|
25 |
+
# List of environment variables to be provided by each user to use the app.
|
26 |
+
user_env = []
|
27 |
+
|
28 |
+
#cookie_auth = true
|
29 |
+
auth_secret = "${CHAINLIT_AUTH_SECRET}"
|
30 |
+
|
31 |
+
# Duration (in seconds) during which the session is saved when the connection is lost
|
32 |
+
session_timeout = 7200
|
33 |
+
|
34 |
+
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
35 |
+
# follow_symlink = false
|
36 |
+
|
37 |
+
[features]
|
38 |
+
edit_message = true
|
39 |
+
unsafe_allow_html = false
|
40 |
+
latex = false
|
41 |
+
[features.spontaneous_file_upload]
|
42 |
+
enabled = true
|
43 |
+
accept = ["*/*"]
|
44 |
+
max_files = 20
|
45 |
+
max_size_mb = 500
|
46 |
+
auto_tag_thread = true
|
47 |
+
|
48 |
+
|
49 |
+
[UI]
|
50 |
+
# Name of the app and chatbot.
|
51 |
+
name = "Daysoff CSA | booking-api-beta"
|
52 |
+
|
53 |
+
# Description of the app and chatbot. This is used for HTML tags.
|
54 |
+
# description = ""
|
55 |
+
|
56 |
+
# The default value for the expand messages settings.
|
57 |
+
default_expand_messages = true
|
58 |
+
|
59 |
+
# Chain of Thought (CoT) display mode. Can be "hidden", "tool_call" or "full".
|
60 |
+
cot = "full"
|
61 |
+
|
62 |
+
# Link to your github repo. This will add a github button in the UI's header.
|
63 |
+
# github = ""
|
64 |
+
|
65 |
+
# Specify a CSS file that can be used to customize the user interface.
|
66 |
+
# This can either be a css file in your `public` dir or a URL
|
67 |
+
#custom_css = '/public/stylesheet.css'
|
68 |
+
|
69 |
+
[UI.theme]
|
70 |
+
#layout = "wide"
|
71 |
+
#font_family = "Inter, sans-serif"
|
72 |
+
# Override default MUI light theme. (Check theme.ts)
|
73 |
+
[UI.theme.light]
|
74 |
+
#background = "#FAFAFA"
|
75 |
+
#paper = "#FFFFFF"
|
76 |
+
|
77 |
+
[UI.theme.light.primary]
|
78 |
+
#main = "#F80061"
|
79 |
+
#dark = "#980039"
|
80 |
+
#light = "#FFE7EB"
|
81 |
+
|
82 |
+
# Override default MUI dark theme. (Check theme.ts)
|
83 |
+
[UI.theme.dark]
|
84 |
+
#background = "#FAFAFA"
|
85 |
+
#paper = "#FFFFFF"
|
86 |
+
|
87 |
+
[UI.theme.dark.primary]
|
88 |
+
#main = "#F80061"
|
89 |
+
#dark = "#980039"
|
90 |
+
#light = "#FFE7EB"
|
91 |
+
|
92 |
+
|
93 |
+
[meta]
|
94 |
+
generated_by = "0.6.2"
|
95 |
+
|