Spaces:
Sleeping
Sleeping
Create .chainlit/config.toml
Browse files- .chainlit/config.toml +39 -0
.chainlit/config.toml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
# If true (default), the app will be available to anonymous users.
|
3 |
+
# If false, users will need to authenticate and be part of the project to use the app.
|
4 |
+
public = true
|
5 |
+
|
6 |
+
# The project ID (found on https://cloud.chainlit.io).
|
7 |
+
# The project ID is required when public is set to false or when using the cloud database.
|
8 |
+
#id = ""
|
9 |
+
|
10 |
+
# Uncomment if you want to persist the chats.
|
11 |
+
# local will create a database in your .chainlit directory (requires node.js installed).
|
12 |
+
# cloud will use the Chainlit cloud database.
|
13 |
+
# custom will load use your custom client.
|
14 |
+
# database = "local"
|
15 |
+
|
16 |
+
# Whether to enable telemetry (default: true). No personal data is collected.
|
17 |
+
enable_telemetry = true
|
18 |
+
|
19 |
+
# List of environment variables to be provided by each user to use the app.
|
20 |
+
user_env = []
|
21 |
+
|
22 |
+
[UI]
|
23 |
+
# Name of the app and chatbot.
|
24 |
+
name = "10K-GPT"
|
25 |
+
|
26 |
+
# Description of the app and chatbot. This is used for HTML tags.
|
27 |
+
# description = ""
|
28 |
+
|
29 |
+
# The default value for the expand messages settings.
|
30 |
+
default_expand_messages = false
|
31 |
+
|
32 |
+
# Hide the chain of thought details from the user in the UI.
|
33 |
+
hide_cot = false
|
34 |
+
|
35 |
+
# Link to your github repo. This will add a github button in the UI's header.
|
36 |
+
# github = ""
|
37 |
+
|
38 |
+
[meta]
|
39 |
+
generated_by = "0.5.2"
|