chainlit 1.1.300rc0__py3-none-any.whl → 1.1.300rc2__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/copilot/dist/index.js +134 -134
- chainlit/data/dynamodb.py +586 -0
- chainlit/frontend/dist/assets/{DailyMotion-e54bf0dc.js → DailyMotion-875f8ae4.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-a767c817.js → Facebook-5a236c6a.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-5d19f3d1.js → FilePlayer-139fc89f.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-93bef413.js → Kaltura-091e82f4.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-d5d27c2a.js → Mixcloud-2a11761c.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-ad063035.js → Mux-e9439155.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-a9a0e47e.js → Preview-4a1f503b.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-1698c4da.js → SoundCloud-56125978.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-e5832da9.js → Streamable-9aff4ba5.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-cd321ef4.js → Twitch-ea748d1d.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-8646c638.js → Vidyard-8106a931.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-0e590e3a.js → Vimeo-1f0b6b55.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-76f0c9b0.js → Wistia-c18b0bba.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-a94756f4.js → YouTube-9114d4e0.js} +1 -1
- chainlit/frontend/dist/assets/{index-53c62926.css → index-67745611.css} +1 -1
- chainlit/frontend/dist/assets/{index-51fef15f.js → index-b8523620.js} +96 -96
- chainlit/frontend/dist/assets/{react-plotly-d9ffbf69.js → react-plotly-68456fe1.js} +1 -1
- chainlit/frontend/dist/index.html +2 -2
- chainlit/oauth_providers.py +56 -0
- chainlit/socket.py +4 -1
- {chainlit-1.1.300rc0.dist-info → chainlit-1.1.300rc2.dist-info}/METADATA +16 -7
- {chainlit-1.1.300rc0.dist-info → chainlit-1.1.300rc2.dist-info}/RECORD +26 -25
- {chainlit-1.1.300rc0.dist-info → chainlit-1.1.300rc2.dist-info}/WHEEL +0 -0
- {chainlit-1.1.300rc0.dist-info → chainlit-1.1.300rc2.dist-info}/entry_points.txt +0 -0
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<script>
|
|
23
23
|
const global = globalThis;
|
|
24
24
|
</script>
|
|
25
|
-
<script type="module" crossorigin src="/assets/index-
|
|
26
|
-
<link rel="stylesheet" href="/assets/index-
|
|
25
|
+
<script type="module" crossorigin src="/assets/index-b8523620.js"></script>
|
|
26
|
+
<link rel="stylesheet" href="/assets/index-67745611.css">
|
|
27
27
|
</head>
|
|
28
28
|
<body>
|
|
29
29
|
<div id="root"></div>
|
chainlit/oauth_providers.py
CHANGED
|
@@ -474,6 +474,61 @@ class AWSCognitoOAuthProvider(OAuthProvider):
|
|
|
474
474
|
)
|
|
475
475
|
return (cognito_user, user)
|
|
476
476
|
|
|
477
|
+
class GitlabOAuthProvider(OAuthProvider):
|
|
478
|
+
id = "gitlab"
|
|
479
|
+
env = ["OAUTH_GITLAB_CLIENT_ID", "OAUTH_GITLAB_CLIENT_SECRET", "OAUTH_GITLAB_DOMAIN"]
|
|
480
|
+
|
|
481
|
+
def __init__(self):
|
|
482
|
+
self.client_id = os.environ.get("OAUTH_GITLAB_CLIENT_ID")
|
|
483
|
+
self.client_secret = os.environ.get("OAUTH_GITLAB_CLIENT_SECRET")
|
|
484
|
+
# Ensure that the domain does not have a trailing slash
|
|
485
|
+
self.domain = f"https://{os.environ.get('OAUTH_GITLAB_DOMAIN', '').rstrip('/')}"
|
|
486
|
+
|
|
487
|
+
self.authorize_url = f"{self.domain}/oauth/authorize"
|
|
488
|
+
|
|
489
|
+
self.authorize_params = {
|
|
490
|
+
"scope": "openid profile email",
|
|
491
|
+
"response_type": "code",
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
async def get_token(self, code: str, url: str):
|
|
495
|
+
payload = {
|
|
496
|
+
"client_id": self.client_id,
|
|
497
|
+
"client_secret": self.client_secret,
|
|
498
|
+
"code": code,
|
|
499
|
+
"grant_type": "authorization_code",
|
|
500
|
+
"redirect_uri": url,
|
|
501
|
+
}
|
|
502
|
+
async with httpx.AsyncClient() as client:
|
|
503
|
+
response = await client.post(
|
|
504
|
+
f"{self.domain}/oauth/token",
|
|
505
|
+
data=payload,
|
|
506
|
+
)
|
|
507
|
+
response.raise_for_status()
|
|
508
|
+
json_content = response.json()
|
|
509
|
+
token = json_content.get("access_token")
|
|
510
|
+
if not token:
|
|
511
|
+
raise HTTPException(
|
|
512
|
+
status_code=400, detail="Failed to get the access token"
|
|
513
|
+
)
|
|
514
|
+
return token
|
|
515
|
+
|
|
516
|
+
async def get_user_info(self, token: str):
|
|
517
|
+
async with httpx.AsyncClient() as client:
|
|
518
|
+
response = await client.get(
|
|
519
|
+
f"{self.domain}/oauth/userinfo",
|
|
520
|
+
headers={"Authorization": f"Bearer {token}"},
|
|
521
|
+
)
|
|
522
|
+
response.raise_for_status()
|
|
523
|
+
gitlab_user = response.json()
|
|
524
|
+
user = User(
|
|
525
|
+
identifier=gitlab_user.get("email"),
|
|
526
|
+
metadata={
|
|
527
|
+
"image": gitlab_user.get("picture", ""),
|
|
528
|
+
"provider": "gitlab",
|
|
529
|
+
},
|
|
530
|
+
)
|
|
531
|
+
return (gitlab_user, user)
|
|
477
532
|
|
|
478
533
|
providers = [
|
|
479
534
|
GithubOAuthProvider(),
|
|
@@ -483,6 +538,7 @@ providers = [
|
|
|
483
538
|
Auth0OAuthProvider(),
|
|
484
539
|
DescopeOAuthProvider(),
|
|
485
540
|
AWSCognitoOAuthProvider(),
|
|
541
|
+
GitlabOAuthProvider(),
|
|
486
542
|
]
|
|
487
543
|
|
|
488
544
|
|
chainlit/socket.py
CHANGED
|
@@ -2,6 +2,7 @@ import asyncio
|
|
|
2
2
|
import json
|
|
3
3
|
import time
|
|
4
4
|
import uuid
|
|
5
|
+
from urllib.parse import unquote
|
|
5
6
|
from typing import Any, Dict, Literal
|
|
6
7
|
|
|
7
8
|
from chainlit.action import Action
|
|
@@ -138,6 +139,8 @@ async def connect(sid, environ, auth):
|
|
|
138
139
|
|
|
139
140
|
client_type = environ.get("HTTP_X_CHAINLIT_CLIENT_TYPE")
|
|
140
141
|
http_referer = environ.get("HTTP_REFERER")
|
|
142
|
+
url_encoded_chat_profile = environ.get("HTTP_X_CHAINLIT_CHAT_PROFILE")
|
|
143
|
+
chat_profile = unquote(url_encoded_chat_profile) if url_encoded_chat_profile else None
|
|
141
144
|
|
|
142
145
|
ws_session = WebsocketSession(
|
|
143
146
|
id=session_id,
|
|
@@ -148,7 +151,7 @@ async def connect(sid, environ, auth):
|
|
|
148
151
|
user_env=user_env,
|
|
149
152
|
user=user,
|
|
150
153
|
token=token,
|
|
151
|
-
chat_profile=
|
|
154
|
+
chat_profile=chat_profile,
|
|
152
155
|
thread_id=environ.get("HTTP_X_CHAINLIT_THREAD_ID"),
|
|
153
156
|
languages=environ.get("HTTP_ACCEPT_LANGUAGE"),
|
|
154
157
|
http_referer=http_referer,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chainlit
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.300rc2
|
|
4
4
|
Summary: Build Conversational AI.
|
|
5
5
|
Home-page: https://github.com/Chainlit/chainlit
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -24,6 +24,8 @@ Requires-Dist: httpx (>=0.23.0)
|
|
|
24
24
|
Requires-Dist: lazify (>=0.4.0,<0.5.0)
|
|
25
25
|
Requires-Dist: literalai (==0.0.602)
|
|
26
26
|
Requires-Dist: nest-asyncio (>=1.5.6,<2.0.0)
|
|
27
|
+
Requires-Dist: numpy (>=1.24.4,<2.0.0) ; python_version < "3.9"
|
|
28
|
+
Requires-Dist: numpy (>=1.26,<2.0) ; python_version >= "3.9"
|
|
27
29
|
Requires-Dist: packaging (>=23.1,<24.0)
|
|
28
30
|
Requires-Dist: pydantic (>=1,<3)
|
|
29
31
|
Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
|
|
@@ -42,6 +44,8 @@ Description-Content-Type: text/markdown
|
|
|
42
44
|
|
|
43
45
|
[](https://discord.gg/k73SQ3FyUh)
|
|
44
46
|
[](https://twitter.com/chainlit_io)
|
|
47
|
+

|
|
48
|
+
[](https://github.com/chainlit/chainlit/graphs/contributors)
|
|
45
49
|
[](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml)
|
|
46
50
|
|
|
47
51
|
**Build production-ready Conversational AI applications in minutes, not weeks ⚡️**
|
|
@@ -60,7 +64,9 @@ Full documentation is available [here](https://docs.chainlit.io). You can ask Ch
|
|
|
60
64
|
> Contact us [here](https://forms.gle/BX3UNBLmTF75KgZVA) for **Enterprise Support**.
|
|
61
65
|
> Check out [Literal AI](https://literalai.com), our product to monitor and evaluate LLM applications! It works with any Python or TypeScript applications and [seamlessly](https://docs.chainlit.io/data-persistence/overview) with Chainlit by adding a `LITERAL_API_KEY` in your project.
|
|
62
66
|
|
|
63
|
-
|
|
67
|
+
<p align="center">
|
|
68
|
+
<img src="https://github.com/Chainlit/chainlit/assets/13104895/0c2cc7a9-766c-41d3-aae2-117a2d0eb8ed" width="80%" />
|
|
69
|
+
</p>
|
|
64
70
|
|
|
65
71
|
## Installation
|
|
66
72
|
|
|
@@ -83,8 +89,10 @@ Create a new file `demo.py` with the following code:
|
|
|
83
89
|
import chainlit as cl
|
|
84
90
|
|
|
85
91
|
|
|
86
|
-
@cl.step
|
|
87
|
-
def tool():
|
|
92
|
+
@cl.step(type="tool")
|
|
93
|
+
async def tool():
|
|
94
|
+
# Fake tool
|
|
95
|
+
await cl.sleep(2)
|
|
88
96
|
return "Response from the tool!"
|
|
89
97
|
|
|
90
98
|
|
|
@@ -101,11 +109,12 @@ async def main(message: cl.Message):
|
|
|
101
109
|
None.
|
|
102
110
|
"""
|
|
103
111
|
|
|
112
|
+
final_answer = await cl.Message(content="").send()
|
|
113
|
+
|
|
104
114
|
# Call the tool
|
|
105
|
-
tool()
|
|
115
|
+
final_answer.content = await tool()
|
|
106
116
|
|
|
107
|
-
|
|
108
|
-
await cl.Message(content="This is the final answer").send()
|
|
117
|
+
await final_answer.update()
|
|
109
118
|
```
|
|
110
119
|
|
|
111
120
|
Now run it!
|
|
@@ -10,36 +10,37 @@ chainlit/config.py,sha256=b9Zaab386X6S0k5F9e-epL-AohRvIQZ9RzicyCPAk3s,16581
|
|
|
10
10
|
chainlit/context.py,sha256=kBnJiKKNhft1nrXFLQnAW6M-_mzMpYqDEFAG5-lrHyo,2813
|
|
11
11
|
chainlit/copilot/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
12
12
|
chainlit/copilot/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
13
|
-
chainlit/copilot/dist/index.js,sha256=
|
|
13
|
+
chainlit/copilot/dist/index.js,sha256=jsIaS2a61WRrulslLhdxJYN77zOlWAXcaZ1njufYCTo,6751095
|
|
14
14
|
chainlit/data/__init__.py,sha256=E0NmYlxi0v4V17zKI2btAMKHWyK8kXamVMEQF0m7TPU,16984
|
|
15
15
|
chainlit/data/acl.py,sha256=5EwZuKVcZediw77L661MohGce3JzGIaYmw6NutmMTw0,578
|
|
16
|
+
chainlit/data/dynamodb.py,sha256=u5L9xqp0FG6J2VuGqUjMiJmIddL5jXs4MUcoZb4mXsM,19420
|
|
16
17
|
chainlit/data/sql_alchemy.py,sha256=lY_5fg7LY0zcBZfsfxHYIhC5taM1MCatH9-CLgpg-Vk,26821
|
|
17
18
|
chainlit/data/storage_clients.py,sha256=D9KY1XKDjZh2uuh01ECxeoEtjw-JlrCR-WCuOuePVQI,3007
|
|
18
19
|
chainlit/discord/__init__.py,sha256=kZ_AAMaCToqO-1FdeQ8_IHS2pqNT0QJ-yyd8bCMaHHs,198
|
|
19
20
|
chainlit/discord/app.py,sha256=KvBS-bL89tKzzz2-lqCQVaI2hb4qYTyhl_TzCdhMfHQ,10540
|
|
20
21
|
chainlit/element.py,sha256=qhXq9b6NtvKePHNpyft9QzYS-O2h7zlhsRDCjOmsAhg,10549
|
|
21
22
|
chainlit/emitter.py,sha256=54MPYoYHkOCKJvT30Vvg9mWYzWunGN9I3cFaqIoQ8oU,13037
|
|
22
|
-
chainlit/frontend/dist/assets/DailyMotion-
|
|
23
|
-
chainlit/frontend/dist/assets/Facebook-
|
|
24
|
-
chainlit/frontend/dist/assets/FilePlayer-
|
|
25
|
-
chainlit/frontend/dist/assets/Kaltura-
|
|
26
|
-
chainlit/frontend/dist/assets/Mixcloud-
|
|
27
|
-
chainlit/frontend/dist/assets/Mux-
|
|
28
|
-
chainlit/frontend/dist/assets/Preview-
|
|
29
|
-
chainlit/frontend/dist/assets/SoundCloud-
|
|
30
|
-
chainlit/frontend/dist/assets/Streamable-
|
|
31
|
-
chainlit/frontend/dist/assets/Twitch-
|
|
32
|
-
chainlit/frontend/dist/assets/Vidyard-
|
|
33
|
-
chainlit/frontend/dist/assets/Vimeo-
|
|
34
|
-
chainlit/frontend/dist/assets/Wistia-
|
|
35
|
-
chainlit/frontend/dist/assets/YouTube-
|
|
36
|
-
chainlit/frontend/dist/assets/index-
|
|
37
|
-
chainlit/frontend/dist/assets/index-
|
|
23
|
+
chainlit/frontend/dist/assets/DailyMotion-875f8ae4.js,sha256=lg9HeHaGggyLlNma34WZu5u3CqOjOTNxpS_NNNzQwek,2961
|
|
24
|
+
chainlit/frontend/dist/assets/Facebook-5a236c6a.js,sha256=fjzdDuo5g65EH6sJYpm2HsYrR72I2-UJvqwHtDTtmIU,3216
|
|
25
|
+
chainlit/frontend/dist/assets/FilePlayer-139fc89f.js,sha256=Z5og4v0j3yNOF1CcR8Np3tXvyPbaySefnzD2LuKffis,9041
|
|
26
|
+
chainlit/frontend/dist/assets/Kaltura-091e82f4.js,sha256=E3T3uVZLnkn0xnjeED-NSzTIkKoE4DPl1kyh0OrytM8,2790
|
|
27
|
+
chainlit/frontend/dist/assets/Mixcloud-2a11761c.js,sha256=1bkIrM6TuNueXlaGALuJNBsiwUyehMq816eZAu6kDsQ,2638
|
|
28
|
+
chainlit/frontend/dist/assets/Mux-e9439155.js,sha256=77yxRBo0l5r5NPY6TIkjEIALA9BqDYs3A2R5yN3KC2o,5360
|
|
29
|
+
chainlit/frontend/dist/assets/Preview-4a1f503b.js,sha256=xHPaLmF-Ez4ZDd8YajocCM-E8DZe0hW22IsArvSRS7w,3011
|
|
30
|
+
chainlit/frontend/dist/assets/SoundCloud-56125978.js,sha256=Yjuq8YXLv9x0BEb6oxssTRKwioVQdZNnzfgnrHUXkro,2923
|
|
31
|
+
chainlit/frontend/dist/assets/Streamable-9aff4ba5.js,sha256=l-Xh9eT5Xye8TGlzeJ7DYRuq36lq2ROZCHe77MFrrH8,2935
|
|
32
|
+
chainlit/frontend/dist/assets/Twitch-ea748d1d.js,sha256=uGZpdz9aVtZsbN4MBbLc9J_CyB4Pv86fKYmh5njWe6g,3083
|
|
33
|
+
chainlit/frontend/dist/assets/Vidyard-8106a931.js,sha256=u6wDM_E0n1xbl3O9MokYWLS5oBm33EIH-DPtT30eFjg,2857
|
|
34
|
+
chainlit/frontend/dist/assets/Vimeo-1f0b6b55.js,sha256=TE2HPDXsbDVvk0R128RophHVf2Hfn6mIuukZ9oYxYJA,3627
|
|
35
|
+
chainlit/frontend/dist/assets/Wistia-c18b0bba.js,sha256=vsz2iq3dpu8ywGMumhCc0uRZma-ObCjCP9BWlNth4ew,3514
|
|
36
|
+
chainlit/frontend/dist/assets/YouTube-9114d4e0.js,sha256=lzhZIYUCgb8Ngnm3XE00bg9OB2wOhZhBjyoXeW1s1lQ,4448
|
|
37
|
+
chainlit/frontend/dist/assets/index-67745611.css,sha256=Z3RWEdFx53YelhEb7ODlhg4vVfuaaszH8B8lDUJpfjI,2506
|
|
38
|
+
chainlit/frontend/dist/assets/index-b8523620.js,sha256=g5w0tI1WYnB3AVR8OEgwlSGB9KnwrjLNU0XO60XdV8g,2752574
|
|
38
39
|
chainlit/frontend/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
39
40
|
chainlit/frontend/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
40
|
-
chainlit/frontend/dist/assets/react-plotly-
|
|
41
|
+
chainlit/frontend/dist/assets/react-plotly-68456fe1.js,sha256=kj8iuusdppDDE60hOgZ3_EhAHV6po52mKFt0xMUCZr4,3739251
|
|
41
42
|
chainlit/frontend/dist/favicon.svg,sha256=0Cy8x28obT5eWW3nxZRhsEvu6_zMqrqbg0y6hT3D0Q0,6455
|
|
42
|
-
chainlit/frontend/dist/index.html,sha256=
|
|
43
|
+
chainlit/frontend/dist/index.html,sha256=vc0O97cLLahh_pbyZg59KOuMKJY2amqm1SqLAUKkOEY,1005
|
|
43
44
|
chainlit/haystack/__init__.py,sha256=uZ77YiPy-qleSTi3dQCDO9HE6S6F6GpJWmh7jO4cxXA,217
|
|
44
45
|
chainlit/haystack/callbacks.py,sha256=tItLc6OmskPeDEJH2Qjtg7KgAgIy1TuYQYHTZm9cr3U,5209
|
|
45
46
|
chainlit/hello.py,sha256=LwENQWo5s5r8nNDn4iKSV77vX60Ky5r_qGjQhyi7qlY,416
|
|
@@ -52,7 +53,7 @@ chainlit/llama_index/callbacks.py,sha256=THFmwotSF_ibqFuaQgxGvEjgKmmzoGJKNlVI75S
|
|
|
52
53
|
chainlit/logger.py,sha256=wTwRSZsLfXwWy6U4351IgWAm4KCMThgxm9EZpjGUEr4,373
|
|
53
54
|
chainlit/markdown.py,sha256=VUpqW7MqgjiPIQYHU4funwqC4GmHZBu_TGZTjTI4B0k,2025
|
|
54
55
|
chainlit/message.py,sha256=dheL_MiBcdc4wB9yJBRnOBZavcNRYVgjhWllSj3c1c4,18012
|
|
55
|
-
chainlit/oauth_providers.py,sha256=
|
|
56
|
+
chainlit/oauth_providers.py,sha256=jMh5s8JOVM8QGUi_TtIA9eQqADT-lmGTlNCMV_yepqM,19551
|
|
56
57
|
chainlit/openai/__init__.py,sha256=DJP_ptclLUM5Zylr4RO1Vk0lCufo3yDqXyH5J9izYS8,1814
|
|
57
58
|
chainlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
59
|
chainlit/secret.py,sha256=cQvIFGTQ7r2heC8EOGdgifSZZYqslh-qQxhUhKhD8vU,295
|
|
@@ -60,7 +61,7 @@ chainlit/server.py,sha256=dpgTSFJJ33Judgn2MIfg0F1dTz6gFCvp3iazhQ9d8mQ,24595
|
|
|
60
61
|
chainlit/session.py,sha256=SOX2zFct3apiSNcIzCDWgDRsUFgUG_6hewqWU8gfIZE,9694
|
|
61
62
|
chainlit/slack/__init__.py,sha256=Q41ztJHeVmpoXVgVqAcwGOufQp_bjf7dDT7eEXDdhPI,207
|
|
62
63
|
chainlit/slack/app.py,sha256=hGqd6m3BI47dLUyhF2-Q544r3Uib72Iz4GaBiwxchno,11619
|
|
63
|
-
chainlit/socket.py,sha256=
|
|
64
|
+
chainlit/socket.py,sha256=_bLKDBYvNNidoouU2WgylPs4wv8yRCtPuTv7qiyUEpw,11832
|
|
64
65
|
chainlit/step.py,sha256=UKLPLq4UsB-vJfgIuLelno2KbmUKHXfvi0k8KB_Eplc,13882
|
|
65
66
|
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
66
67
|
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
@@ -71,7 +72,7 @@ chainlit/user.py,sha256=Cw4uGz0ffivWFszv8W__EHwkvTHQ3Lj9hqpRCPxFujo,619
|
|
|
71
72
|
chainlit/user_session.py,sha256=G1amgs1_h2tVn4mtAXZmunm9nlBHQ_rCYvJQh3nsVwQ,1645
|
|
72
73
|
chainlit/utils.py,sha256=jdDcwOCUqpFRvWd_NWLaEUHB3vRIAU8rb013aWoqXOE,2642
|
|
73
74
|
chainlit/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
74
|
-
chainlit-1.1.
|
|
75
|
-
chainlit-1.1.
|
|
76
|
-
chainlit-1.1.
|
|
77
|
-
chainlit-1.1.
|
|
75
|
+
chainlit-1.1.300rc2.dist-info/METADATA,sha256=_m6T80y7Q8LdQ9-NVhjv08J67BMtWVSpRpiHth7GJdY,6320
|
|
76
|
+
chainlit-1.1.300rc2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
77
|
+
chainlit-1.1.300rc2.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
78
|
+
chainlit-1.1.300rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|