dwb2023 commited on
Commit
932b136
β€’
1 Parent(s): 5917a5e

Delete .chainlit/config.toml

Browse files

deleting config.toml to trigger recreation.

Files changed (1) hide show
  1. .chainlit/config.toml +0 -89
.chainlit/config.toml DELETED
@@ -1,89 +0,0 @@
1
- [project]
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
-
8
- # Duration (in seconds) during which the session is saved when the connection is lost
9
- session_timeout = 3600
10
-
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
- # Path to the starters file
18
- # starters_file = "starters.py"
19
-
20
- [features]
21
- # Show the prompt playground
22
- prompt_playground = true
23
-
24
- # 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)
25
- unsafe_allow_html = false
26
-
27
- # Process and display mathematical expressions. This can clash with "$" characters in messages.
28
- latex = false
29
-
30
- # Authorize users to upload files with messages
31
- multi_modal = false
32
-
33
- # Allows user to use speech to text
34
- [features.speech_to_text]
35
- enabled = false
36
- # See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string
37
- # language = "en-US"
38
-
39
- [UI]
40
- # Name of the app and chatbot.
41
- name = "AirBnB QA Chatbot"
42
-
43
- # Show the readme while the conversation is empty.
44
- show_readme_as_default = false
45
-
46
- # Description of the app and chatbot. This is used for HTML tags.
47
- # description = "AirBnB QA Bot"
48
-
49
- # Large size content are by default collapsed for a cleaner ui
50
- default_collapse_content = false
51
-
52
- # The default value for the expand messages settings.
53
- default_expand_messages = true
54
-
55
- # Hide the chain of thought details from the user in the UI.
56
- hide_cot = false
57
-
58
- # Link to your github repo. This will add a github button in the UI's header.
59
- # github = ""
60
-
61
- # Specify a CSS file that can be used to customize the user interface.
62
- # The CSS file can be served from the public directory or via an external link.
63
- # custom_css = "/public/test.css"
64
-
65
- # Override default MUI light theme. (Check theme.ts)
66
- [UI.theme.light]
67
- #background = "#FAFAFA"
68
- #paper = "#FFFFFF"
69
-
70
- [UI.theme.light.primary]
71
- #main = "#F80061"
72
- #dark = "#980039"
73
- #light = "#FFE7EB"
74
-
75
- # Override default MUI dark theme. (Check theme.ts)
76
- [UI.theme.dark]
77
- #background = "#FAFAFA"
78
- #paper = "#FFFFFF"
79
-
80
- [UI.theme.dark.primary]
81
- #main = "#F80061"
82
- #dark = "#980039"
83
- #light = "#FFE7EB"
84
-
85
- # Set the default theme to dark
86
- default_theme = "dark"
87
-
88
- [meta]
89
- generated_by = "0.7.700"