chainlit 1.1.300rc1__py3-none-any.whl → 1.1.300rc3__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 +159 -159
- chainlit/data/dynamodb.py +586 -0
- chainlit/emitter.py +4 -3
- chainlit/frontend/dist/assets/{DailyMotion-acaf0251.js → DailyMotion-863636d0.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-7e85d6cd.js → Facebook-0280efb3.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-548ab948.js → FilePlayer-1528f89e.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-63c33135.js → Kaltura-1f532b59.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-553956db.js → Mixcloud-021e94e9.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-823ded93.js → Mux-1b653abe.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-47f5b210.js → Preview-de062677.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-e5e98e65.js → SoundCloud-4f28b9a5.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-14812f3b.js → Streamable-5f54a48c.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-3e4a9570.js → Twitch-2a06480f.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-63580b33.js → Vidyard-2f2482c5.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-1c2b5c4c.js → Vimeo-57df3f2a.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-3dc1d7c3.js → Wistia-5b0cff10.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-d92466dc.js → YouTube-c07cbcf8.js} +1 -1
- chainlit/frontend/dist/assets/{index-53c62926.css → index-67745611.css} +1 -1
- chainlit/frontend/dist/assets/{index-89bf1895.js → index-a73a8747.js} +97 -97
- chainlit/frontend/dist/assets/{react-plotly-691f8eab.js → react-plotly-1085244e.js} +1 -1
- chainlit/frontend/dist/index.html +2 -2
- chainlit/oauth_providers.py +56 -0
- chainlit/socket.py +4 -1
- chainlit/step.py +12 -6
- {chainlit-1.1.300rc1.dist-info → chainlit-1.1.300rc3.dist-info}/METADATA +1 -1
- {chainlit-1.1.300rc1.dist-info → chainlit-1.1.300rc3.dist-info}/RECORD +28 -27
- {chainlit-1.1.300rc1.dist-info → chainlit-1.1.300rc3.dist-info}/WHEEL +0 -0
- {chainlit-1.1.300rc1.dist-info → chainlit-1.1.300rc3.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-a73a8747.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,
|
chainlit/step.py
CHANGED
|
@@ -51,7 +51,7 @@ def step(
|
|
|
51
51
|
tags: Optional[List[str]] = None,
|
|
52
52
|
disable_feedback: bool = True,
|
|
53
53
|
language: Optional[str] = None,
|
|
54
|
-
show_input: Union[bool, str] =
|
|
54
|
+
show_input: Union[bool, str] = "json",
|
|
55
55
|
):
|
|
56
56
|
"""Step decorator for async and sync functions."""
|
|
57
57
|
|
|
@@ -160,7 +160,7 @@ class Step:
|
|
|
160
160
|
tags: Optional[List[str]] = None,
|
|
161
161
|
disable_feedback: bool = True,
|
|
162
162
|
language: Optional[str] = None,
|
|
163
|
-
show_input: Union[bool, str] =
|
|
163
|
+
show_input: Union[bool, str] = "json",
|
|
164
164
|
):
|
|
165
165
|
trace_event(f"init {self.__class__.__name__} {type}")
|
|
166
166
|
time.sleep(0.001)
|
|
@@ -356,15 +356,21 @@ class Step:
|
|
|
356
356
|
|
|
357
357
|
return self
|
|
358
358
|
|
|
359
|
-
async def stream_token(self, token: str, is_sequence=False):
|
|
359
|
+
async def stream_token(self, token: str, is_sequence=False, is_input=False):
|
|
360
360
|
"""
|
|
361
361
|
Sends a token to the UI.
|
|
362
362
|
Once all tokens have been streamed, call .send() to end the stream and persist the step if persistence is enabled.
|
|
363
363
|
"""
|
|
364
364
|
if is_sequence:
|
|
365
|
-
|
|
365
|
+
if is_input:
|
|
366
|
+
self.input = token
|
|
367
|
+
else:
|
|
368
|
+
self.output = token
|
|
366
369
|
else:
|
|
367
|
-
|
|
370
|
+
if is_input:
|
|
371
|
+
self.input += token
|
|
372
|
+
else:
|
|
373
|
+
self.output += token
|
|
368
374
|
|
|
369
375
|
assert self.id
|
|
370
376
|
|
|
@@ -377,7 +383,7 @@ class Step:
|
|
|
377
383
|
await context.emitter.stream_start(step_dict)
|
|
378
384
|
else:
|
|
379
385
|
await context.emitter.send_token(
|
|
380
|
-
id=self.id, token=token, is_sequence=is_sequence
|
|
386
|
+
id=self.id, token=token, is_sequence=is_sequence, is_input=is_input
|
|
381
387
|
)
|
|
382
388
|
|
|
383
389
|
# Handle parameter less decorator
|
|
@@ -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=0M1q2GGMPzaiZEEYcZQWSoqF_LLSL1DALw3qF2YbLTw,6751277
|
|
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
|
-
chainlit/emitter.py,sha256=
|
|
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-
|
|
22
|
+
chainlit/emitter.py,sha256=JlfNMyMmIRxDXaB9BxDa3n1NbBb-qIn3s4yEfmEhik4,13103
|
|
23
|
+
chainlit/frontend/dist/assets/DailyMotion-863636d0.js,sha256=vsD2NE_r8bsiqWG3GSiNluhCKBwGzwYDgYwkQAXEHyw,2961
|
|
24
|
+
chainlit/frontend/dist/assets/Facebook-0280efb3.js,sha256=zFpvpkKoSuHikXUQndUricIK75xvH3iSB3VxK7VdB9I,3216
|
|
25
|
+
chainlit/frontend/dist/assets/FilePlayer-1528f89e.js,sha256=hR6lV3lCzurCEbGiGeYeENMVnOKe0FKPHAVsOWwlFuI,9041
|
|
26
|
+
chainlit/frontend/dist/assets/Kaltura-1f532b59.js,sha256=gI9ydjZ8cDRZMDRyx6B3rvFrDeliF6rHYhCcA0AIZ3A,2790
|
|
27
|
+
chainlit/frontend/dist/assets/Mixcloud-021e94e9.js,sha256=i74k_Pz8zOq6kP5hXG_RCwTSC1tRUB6adwT2y4-P26Y,2638
|
|
28
|
+
chainlit/frontend/dist/assets/Mux-1b653abe.js,sha256=CstUhYef0n266jdqH7a7rGJibD8GuENayVgZ5VFhp1Y,5360
|
|
29
|
+
chainlit/frontend/dist/assets/Preview-de062677.js,sha256=hImEZC8dGVW81yNpn5RqcQT4GBfE2TQkUTio3UE98Fc,3011
|
|
30
|
+
chainlit/frontend/dist/assets/SoundCloud-4f28b9a5.js,sha256=Vm8MqXSbwtzOH_9Y5DEZy2qtmdGCLPiwXZTwD-JM2rs,2923
|
|
31
|
+
chainlit/frontend/dist/assets/Streamable-5f54a48c.js,sha256=cQbebTjEFqJeE9PUUFjGuiXfJ-JbOIA5XOYD9GtieN8,2935
|
|
32
|
+
chainlit/frontend/dist/assets/Twitch-2a06480f.js,sha256=mfys5LhnJQ8_0968C4WYWsvuUyt3UTspO7oxU0d0idA,3083
|
|
33
|
+
chainlit/frontend/dist/assets/Vidyard-2f2482c5.js,sha256=vwTqW8NtZc1bw7kCRBiJAO4u5jizh7eY2cqnMgybSzs,2857
|
|
34
|
+
chainlit/frontend/dist/assets/Vimeo-57df3f2a.js,sha256=OHBPp1HyaSlvc4ah8hKQPfo26qoXtsQ0ExX4lVZ6CgA,3627
|
|
35
|
+
chainlit/frontend/dist/assets/Wistia-5b0cff10.js,sha256=3YMaLn4jvrcs87mK7suQ-HrixinsBVnshd5yhZ7Mrag,3514
|
|
36
|
+
chainlit/frontend/dist/assets/YouTube-c07cbcf8.js,sha256=7WZUuBqHzdidT4T94OeZJoxdQ8mLN4cmMqLo0E2Qxk4,4448
|
|
37
|
+
chainlit/frontend/dist/assets/index-67745611.css,sha256=Z3RWEdFx53YelhEb7ODlhg4vVfuaaszH8B8lDUJpfjI,2506
|
|
38
|
+
chainlit/frontend/dist/assets/index-a73a8747.js,sha256=vXbtPMWPo9xCNLgkX4QKqWZLSUEPhad5B_UW_pERCvA,2752764
|
|
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-1085244e.js,sha256=3F8QKaqY4q1A9As7EM_r9VhV8Lr7pgCWQ7pvJjx4fRw,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=JwcYlMOsKtXkRpYfx7A7AFO9iqgpO7cst4uUB9yR5IM,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,8 +61,8 @@ 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/step.py,sha256=
|
|
64
|
+
chainlit/socket.py,sha256=_bLKDBYvNNidoouU2WgylPs4wv8yRCtPuTv7qiyUEpw,11832
|
|
65
|
+
chainlit/step.py,sha256=BVNdzsu2zt_Da__ilxiBjW_u3yuJytpJiY0hprvucxc,14084
|
|
65
66
|
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
66
67
|
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
67
68
|
chainlit/translations/en-US.json,sha256=Co2qy0iVqddjH_C4fH8s_pzHkLdwKWW-F5eYQPXWX50,7740
|
|
@@ -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.300rc3.dist-info/METADATA,sha256=g-WUrwxubPvzYHXs_HXSK3pmPc523x5MjBO4GO4CbAo,6320
|
|
76
|
+
chainlit-1.1.300rc3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
77
|
+
chainlit-1.1.300rc3.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
78
|
+
chainlit-1.1.300rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|