Upload example_setup_config_toml.txt
Browse files
.chainlit/example_setup_config_toml.txt
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "010125-daysoff-assistant-api"
|
3 |
+
description = "Intelligent Customer Support Companion"
|
4 |
+
enable_telemetry = false
|
5 |
+
user_env = ["HUGGINGFACEHUB_API_TOKEN"]
|
6 |
+
session_timeout = 14400 # 4 hours session
|
7 |
+
user_session_timeout = 5184000 # 60 days
|
8 |
+
|
9 |
+
[features]
|
10 |
+
unsafe_allow_html = true
|
11 |
+
latex = false
|
12 |
+
auto_tag_thread = true
|
13 |
+
edit_message = true
|
14 |
+
cookie_auth = true
|
15 |
+
|
16 |
+
[UI]
|
17 |
+
name = "SupportGenius"
|
18 |
+
description = "Elevating Customer Support through AI"
|
19 |
+
default_collapse_content = true
|
20 |
+
default_expand_messages = false
|
21 |
+
|
22 |
+
[UI.theme]
|
23 |
+
font_family = "Hack, monospace"
|
24 |
+
|
25 |
+
[UI.theme.dark]
|
26 |
+
background = "#0A0A0A"
|
27 |
+
paper = "#1C1C1C"
|
28 |
+
text = "#E0E0E0"
|
29 |
+
|
30 |
+
[UI.theme.dark.primary]
|
31 |
+
main = "#3498DB"
|
32 |
+
dark = "#2980B9"
|
33 |
+
light = "#5DADE2"
|
34 |
+
|
35 |
+
[UI.theme.colors]
|
36 |
+
success = "#2ECC71"
|
37 |
+
error = "#E74C3C"
|
38 |
+
warning = "#F39C12"
|
39 |
+
info = "#3498DB"
|