souravmighty commited on
Commit
d29204a
1 Parent(s): 1270f19

Delete .chainlit/config.toml

Browse files
Files changed (1) hide show
  1. .chainlit/config.toml +0 -109
.chainlit/config.toml DELETED
@@ -1,109 +0,0 @@
1
- [project]
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 = ["GROQ_API_KEY"]
8
-
9
- # Duration (in seconds) during which the session is saved when the connection is lost
10
- session_timeout = 3600
11
-
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 = false
20
-
21
- [features]
22
- # Show the prompt playground
23
- prompt_playground = true
24
-
25
- # Process and display HTML in messages. This can be a security risk (see https://stackoverflow.com/questions/19603097/why-is-it-dangerous-to-render-user-generated-html-or-javascript)
26
- unsafe_allow_html = false
27
-
28
- # Process and display mathematical expressions. This can clash with "$" characters in messages.
29
- latex = false
30
-
31
- # Automatically tag threads with the current chat profile (if a chat profile is used)
32
- auto_tag_thread = true
33
-
34
- # Authorize users to upload files with messages
35
- [features.multi_modal]
36
- enabled = true
37
- accept = ["*/*"]
38
- max_files = 20
39
- max_size_mb = 500
40
-
41
- # Allows user to use speech to text
42
- [features.speech_to_text]
43
- enabled = false
44
- # See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
45
- # language = "en-US"
46
-
47
- [UI]
48
- # Name of the app and chatbot.
49
- name = "Chatbot"
50
-
51
- # Show the readme while the thread is empty.
52
- show_readme_as_default = true
53
-
54
- # Description of the app and chatbot. This is used for HTML tags.
55
- # description = ""
56
-
57
- # Large size content are by default collapsed for a cleaner ui
58
- default_collapse_content = true
59
-
60
- # The default value for the expand messages settings.
61
- default_expand_messages = false
62
-
63
- # Hide the chain of thought details from the user in the UI.
64
- hide_cot = false
65
-
66
- # Link to your github repo. This will add a github button in the UI's header.
67
- # github = ""
68
-
69
- # Specify a CSS file that can be used to customize the user interface.
70
- # The CSS file can be served from the public directory or via an external link.
71
- # custom_css = "/public/test.css"
72
-
73
- # Specify a Javascript file that can be used to customize the user interface.
74
- # The Javascript file can be served from the public directory.
75
- # custom_js = "/public/test.js"
76
-
77
- # Specify a custom font url.
78
- # custom_font = "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
79
-
80
- # Specify a custom build directory for the frontend.
81
- # This can be used to customize the frontend code.
82
- # Be careful: If this is a relative path, it should not start with a slash.
83
- # custom_build = "./public/build"
84
-
85
- # Override default MUI light theme. (Check theme.ts)
86
- [UI.theme]
87
- #font_family = "Inter, sans-serif"
88
- [UI.theme.light]
89
- #background = "#FAFAFA"
90
- #paper = "#FFFFFF"
91
-
92
- [UI.theme.light.primary]
93
- #main = "#F80061"
94
- #dark = "#980039"
95
- #light = "#FFE7EB"
96
-
97
- # Override default MUI dark theme. (Check theme.ts)
98
- [UI.theme.dark]
99
- #background = "#FAFAFA"
100
- #paper = "#FFFFFF"
101
-
102
- [UI.theme.dark.primary]
103
- #main = "#F80061"
104
- #dark = "#980039"
105
- #light = "#FFE7EB"
106
-
107
-
108
- [meta]
109
- generated_by = "1.0.506"