datacipen commited on
Commit
bc7c59d
·
verified ·
1 Parent(s): b43352f

Update .chainlit/config.toml

Browse files
Files changed (1) hide show
  1. .chainlit/config.toml +72 -6
.chainlit/config.toml CHANGED
@@ -2,7 +2,6 @@
2
  # Whether to enable telemetry (default: true). No personal data is collected.
3
  enable_telemetry = true
4
 
5
-
6
  # List of environment variables to be provided by each user to use the app.
7
  user_env = []
8
 
@@ -12,11 +11,78 @@ session_timeout = 3600
12
  # Enable third parties caching (e.g LangChain cache)
13
  cache = false
14
 
15
- # Authorized origins
16
- allow_origins = ["*"]
17
-
18
  # Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
19
- follow_symlink = true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  [meta]
22
- generated_by = "1.1.306"
 
2
  # Whether to enable telemetry (default: true). No personal data is collected.
3
  enable_telemetry = true
4
 
 
5
  # List of environment variables to be provided by each user to use the app.
6
  user_env = []
7
 
 
11
  # Enable third parties caching (e.g LangChain cache)
12
  cache = false
13
 
 
 
 
14
  # Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
15
+ # follow_symlink = false
16
+
17
+ [features]
18
+ # Show the prompt playground
19
+ prompt_playground = true
20
+ unsafe_allow_html = true
21
+ latex = false
22
+ # Authorize users to upload files with messages
23
+ [features.multi_modal]
24
+ enabled = false
25
+ accept = ["*/*"]
26
+ max_files = 20
27
+ max_size_mb = 500
28
+
29
+ # Allows user to use speech to text
30
+ [features.speech_to_text]
31
+ enabled = false
32
+ # See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
33
+ # language = "en-US"
34
+ auto_tag_thread = true
35
+ [UI]
36
+ # Name of the app and chatbot.
37
+ name = "Skills IA"
38
+
39
+ # Show the readme while the conversation is empty.
40
+ show_readme_as_default = true
41
+
42
+ # Description of the app and chatbot. This is used for HTML tags.
43
+ # description = "Datapcc Chain"
44
+
45
+ # Large size content are by default collapsed for a cleaner ui
46
+ default_collapse_content = false
47
+
48
+ # The default value for the expand messages settings.
49
+ default_expand_messages = true
50
+
51
+ # Hide the chain of thought details from the user in the UI.
52
+ hide_cot = false
53
+
54
+ # Link to your github repo. This will add a github button in the UI's header.
55
+ # github = ""
56
+
57
+ # Specify a CSS file that can be used to customize the user interface.
58
+ # The CSS file can be served from the public directory or via an external link.
59
+ custom_css = "/public/stylesheet.css"
60
+
61
+ # Specify a custom font url.
62
+ custom_font = "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
63
+
64
+ # Override default MUI light theme. (Check theme.ts)
65
+ [UI.theme.light]
66
+ #background = "#FAFAFA"
67
+ #paper = "#FFFFFF"
68
+ background = "#212121"
69
+ #paper = "#586e75"
70
+
71
+ [UI.theme.light.primary]
72
+ main = "#00fff3"
73
+ dark = "#00fff3"
74
+ #light = "#FFE7EB"
75
+
76
+ # Override default MUI dark theme. (Check theme.ts)
77
+ [UI.theme.dark]
78
+ background = "#212121"
79
+ #paper = "#586e75"
80
+
81
+ [UI.theme.dark.primary]
82
+ main = "#00fff3"
83
+ dark = "#00fff3"
84
+ light = "#FFE7EB"
85
+
86
 
87
  [meta]
88
+ generated_by = "0.7.603"