chainlit 1.1.101__py3-none-any.whl → 1.1.200__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of chainlit might be problematic. Click here for more details.
- chainlit/config.py +6 -0
- chainlit/copilot/dist/index.js +218 -222
- chainlit/discord/app.py +18 -9
- chainlit/frontend/dist/assets/{index-37c9a5a9.js → index-d9bad4f1.js} +125 -129
- chainlit/frontend/dist/assets/{react-plotly-c55d0c95.js → react-plotly-48cc0858.js} +1 -1
- chainlit/frontend/dist/index.html +1 -1
- chainlit/message.py +2 -2
- chainlit/server.py +3 -1
- chainlit/slack/app.py +18 -7
- chainlit/step.py +11 -12
- chainlit/types.py +1 -0
- {chainlit-1.1.101.dist-info → chainlit-1.1.200.dist-info}/METADATA +1 -1
- {chainlit-1.1.101.dist-info → chainlit-1.1.200.dist-info}/RECORD +15 -15
- {chainlit-1.1.101.dist-info → chainlit-1.1.200.dist-info}/WHEEL +0 -0
- {chainlit-1.1.101.dist-info → chainlit-1.1.200.dist-info}/entry_points.txt +0 -0
chainlit/config.py
CHANGED
|
@@ -127,6 +127,9 @@ hide_cot = false
|
|
|
127
127
|
# Specify a custom font url.
|
|
128
128
|
# custom_font = "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
|
|
129
129
|
|
|
130
|
+
# Specify a custom meta image url.
|
|
131
|
+
# custom_meta_image_url = "https://chainlit-cloud.s3.eu-west-3.amazonaws.com/logo/chainlit_banner.png"
|
|
132
|
+
|
|
130
133
|
# Specify a custom build directory for the frontend.
|
|
131
134
|
# This can be used to customize the frontend code.
|
|
132
135
|
# Be careful: If this is a relative path, it should not start with a slash.
|
|
@@ -244,6 +247,9 @@ class UISettings(DataClassJsonMixin):
|
|
|
244
247
|
custom_css: Optional[str] = None
|
|
245
248
|
custom_js: Optional[str] = None
|
|
246
249
|
custom_font: Optional[str] = None
|
|
250
|
+
# Optional custom meta tag for image preview
|
|
251
|
+
custom_meta_image_url: Optional[str] = None
|
|
252
|
+
# Optional custom build directory for the frontend
|
|
247
253
|
custom_build: Optional[str] = None
|
|
248
254
|
|
|
249
255
|
|