Upload config.toml
Browse files- .chainlit/config.toml +29 -0
.chainlit/config.toml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
# Name of the app and chatbot.
|
| 3 |
+
name = "Chatbot"
|
| 4 |
+
# Description of the app and chatbot. This is used for HTML tags.
|
| 5 |
+
# description = ""
|
| 6 |
+
|
| 7 |
+
# If true (default), the app will be available to anonymous users (once deployed).
|
| 8 |
+
# If false, users will need to authenticate and be part of the project to use the app.
|
| 9 |
+
public = true
|
| 10 |
+
|
| 11 |
+
# The project ID (found on https://cloud.chainlit.io).
|
| 12 |
+
# If provided, all the message data will be stored in the cloud.
|
| 13 |
+
# The project ID is required when public is set to false.
|
| 14 |
+
#id = ""
|
| 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 = ["OPENAI_API_KEY"]
|
| 21 |
+
|
| 22 |
+
# Hide the chain of thought details from the user in the UI.
|
| 23 |
+
hide_cot = false
|
| 24 |
+
|
| 25 |
+
# Link to your github repo. This will add a github button in the UI's header.
|
| 26 |
+
github = "https://github.com/amjadraza/pandasai-chainlit-docker-deployment-template"
|
| 27 |
+
|
| 28 |
+
# Limit the number of requests per user.
|
| 29 |
+
#request_limit = "10 per day"
|