From 9b4a6604063c3b7a218d0101fc8f02b798bc6bde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=A6=E8=8B=B1=E6=9D=B0?= <327782001@qq.com> Date: Tue, 27 Jun 2023 11:53:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 00-chartgpt/chainlit/.chainlit/.langchain.db | Bin 0 -> 12288 bytes 00-chartgpt/chainlit/.chainlit/config.toml | 39 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 00-chartgpt/chainlit/.chainlit/.langchain.db create mode 100644 00-chartgpt/chainlit/.chainlit/config.toml diff --git a/00-chartgpt/chainlit/.chainlit/.langchain.db b/00-chartgpt/chainlit/.chainlit/.langchain.db new file mode 100644 index 0000000000000000000000000000000000000000..a404ec7b3942e0866a9dd8e9b72cb9562fb88611 GIT binary patch literal 12288 zcmeI#zfXfe6bJA-G-^ruW9$0Hk`NQ)=pr_kN<^xNCY=bj5J{jQ(4?#WTmDCG-5kBE zVZfMlacaIVxg!tm9^8lNJ={A<9Z{T@Sy znr6W~oWK0aw6P~FUyyHIIfB|NX{2|GGS7;do-A*CZF%HQeR3Zi$0WTYEB<*uS**!+ zeK8U3^<`8Q`Lc?dO{&J7XWv@hjBdn?MnCT|NftIqRxxzrLOU8x4bGC~B3f6ksqEu} za8>8qJZOJzaMsRMUw@)JyJ{M!2>}5JKmY;|fB*y_009U<00Izzz`hFT>R{;q_x1PU ZTo8Z&1Rwwb2tWV=5P$##AOL}_z&E$$U9kWF literal 0 HcmV?d00001 diff --git a/00-chartgpt/chainlit/.chainlit/config.toml b/00-chartgpt/chainlit/.chainlit/config.toml new file mode 100644 index 0000000..b00e3fe --- /dev/null +++ b/00-chartgpt/chainlit/.chainlit/config.toml @@ -0,0 +1,39 @@ +[project] +# If true (default), the app will be available to anonymous users. +# If false, users will need to authenticate and be part of the project to use the app. +public = true + +# The project ID (found on https://cloud.chainlit.io). +# The project ID is required when public is set to false or when using the cloud database. +#id = "" + +# Uncomment if you want to persist the chats. +# local will create a database in your .chainlit directory (requires node.js installed). +# cloud will use the Chainlit cloud database. +# custom will load use your custom client. +# database = "local" + +# Whether to enable telemetry (default: true). No personal data is collected. +enable_telemetry = true + +# List of environment variables to be provided by each user to use the app. +user_env = [] + +[UI] +# Name of the app and chatbot. +name = "Chatbot" + +# Description of the app and chatbot. This is used for HTML tags. +# description = "" + +# The default value for the expand messages settings. +default_expand_messages = false + +# Hide the chain of thought details from the user in the UI. +hide_cot = false + +# Link to your github repo. This will add a github button in the UI's header. +# github = "" + +[meta] +generated_by = "0.4.2" -- GitLab