chainlit 1.1.300rc5__py3-none-any.whl → 1.1.301__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/__init__.py +0 -17
- chainlit/cli/__init__.py +5 -0
- chainlit/config.py +0 -1
- chainlit/copilot/dist/index.js +77 -77
- chainlit/emitter.py +4 -4
- chainlit/frontend/dist/assets/{DailyMotion-f9db5a1d.js → DailyMotion-578b63e6.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-f95b29c9.js → Facebook-b825e5bb.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-ba3f562c.js → FilePlayer-bcba3b4e.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-195ed801.js → Kaltura-fc1c9497.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-f64c6d87.js → Mixcloud-4cfb2724.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-206cbddc.js → Mux-aa92055c.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-af249586.js → Preview-9f55905a.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-80a26cdf.js → SoundCloud-f991fe03.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-f80b255d.js → Streamable-53128f49.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-0e2f1d13.js → Twitch-fce8b9f5.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-bd67bfc6.js → Vidyard-e35c6102.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-f9496a5d.js → Vimeo-fff35f8e.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-a943e0aa.js → Wistia-ec07dc64.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-cf572a1f.js → YouTube-ad068e2a.js} +1 -1
- chainlit/frontend/dist/assets/index-d40d41cc.js +727 -0
- chainlit/frontend/dist/assets/{react-plotly-74b55763.js → react-plotly-b2c6442b.js} +1 -1
- chainlit/frontend/dist/index.html +1 -1
- chainlit/oauth_providers.py +33 -3
- chainlit/server.py +13 -10
- chainlit/slack/app.py +2 -2
- chainlit/socket.py +5 -22
- chainlit/types.py +1 -1
- chainlit/utils.py +1 -0
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.301.dist-info}/METADATA +1 -1
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.301.dist-info}/RECORD +32 -32
- chainlit/frontend/dist/assets/index-5511e258.js +0 -727
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.301.dist-info}/WHEEL +0 -0
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.301.dist-info}/entry_points.txt +0 -0
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<script>
|
|
22
22
|
const global = globalThis;
|
|
23
23
|
</script>
|
|
24
|
-
<script type="module" crossorigin src="/assets/index-
|
|
24
|
+
<script type="module" crossorigin src="/assets/index-d40d41cc.js"></script>
|
|
25
25
|
<link rel="stylesheet" href="/assets/index-aaf974a9.css">
|
|
26
26
|
</head>
|
|
27
27
|
<body>
|
chainlit/oauth_providers.py
CHANGED
|
@@ -187,6 +187,36 @@ class AzureADOAuthProvider(OAuthProvider):
|
|
|
187
187
|
)
|
|
188
188
|
return token
|
|
189
189
|
|
|
190
|
+
async def get_user_info(self, token: str):
|
|
191
|
+
async with httpx.AsyncClient() as client:
|
|
192
|
+
response = await client.get(
|
|
193
|
+
"https://graph.microsoft.com/v1.0/me",
|
|
194
|
+
headers={"Authorization": f"Bearer {token}"},
|
|
195
|
+
)
|
|
196
|
+
response.raise_for_status()
|
|
197
|
+
|
|
198
|
+
azure_user = response.json()
|
|
199
|
+
|
|
200
|
+
try:
|
|
201
|
+
photo_response = await client.get(
|
|
202
|
+
"https://graph.microsoft.com/v1.0/me/photos/48x48/$value",
|
|
203
|
+
headers={"Authorization": f"Bearer {token}"},
|
|
204
|
+
)
|
|
205
|
+
photo_data = await photo_response.aread()
|
|
206
|
+
base64_image = base64.b64encode(photo_data)
|
|
207
|
+
azure_user["image"] = (
|
|
208
|
+
f"data:{photo_response.headers['Content-Type']};base64,{base64_image.decode('utf-8')}"
|
|
209
|
+
)
|
|
210
|
+
except Exception as e:
|
|
211
|
+
# Ignore errors getting the photo
|
|
212
|
+
pass
|
|
213
|
+
|
|
214
|
+
user = User(
|
|
215
|
+
identifier=azure_user["userPrincipalName"],
|
|
216
|
+
metadata={"image": azure_user.get("image"), "provider": "azure-ad"},
|
|
217
|
+
)
|
|
218
|
+
return (azure_user, user)
|
|
219
|
+
|
|
190
220
|
|
|
191
221
|
class AzureADHybridOAuthProvider(OAuthProvider):
|
|
192
222
|
id = "azure-ad-hybrid"
|
|
@@ -258,9 +288,9 @@ class AzureADHybridOAuthProvider(OAuthProvider):
|
|
|
258
288
|
)
|
|
259
289
|
photo_data = await photo_response.aread()
|
|
260
290
|
base64_image = base64.b64encode(photo_data)
|
|
261
|
-
azure_user[
|
|
262
|
-
"
|
|
263
|
-
|
|
291
|
+
azure_user["image"] = (
|
|
292
|
+
f"data:{photo_response.headers['Content-Type']};base64,{base64_image.decode('utf-8')}"
|
|
293
|
+
)
|
|
264
294
|
except Exception as e:
|
|
265
295
|
# Ignore errors getting the photo
|
|
266
296
|
pass
|
chainlit/server.py
CHANGED
|
@@ -63,6 +63,7 @@ from typing_extensions import Annotated
|
|
|
63
63
|
from watchfiles import awatch
|
|
64
64
|
|
|
65
65
|
ROOT_PATH = os.environ.get("CHAINLIT_ROOT_PATH", "")
|
|
66
|
+
IS_SUBMOUNT = os.environ.get("CHAINLIT_SUBMOUNT", "") == "true"
|
|
66
67
|
|
|
67
68
|
|
|
68
69
|
@asynccontextmanager
|
|
@@ -114,7 +115,7 @@ async def lifespan(app: FastAPI):
|
|
|
114
115
|
logger.error(f"Error reloading module: {e}")
|
|
115
116
|
|
|
116
117
|
await asyncio.sleep(1)
|
|
117
|
-
await
|
|
118
|
+
await sio.emit("reload", {})
|
|
118
119
|
|
|
119
120
|
break
|
|
120
121
|
|
|
@@ -170,7 +171,9 @@ copilot_build_dir = get_build_dir(os.path.join("libs", "copilot"), "copilot")
|
|
|
170
171
|
|
|
171
172
|
app = FastAPI(lifespan=lifespan)
|
|
172
173
|
|
|
173
|
-
sio = socketio.AsyncServer(
|
|
174
|
+
sio = socketio.AsyncServer(
|
|
175
|
+
cors_allowed_origins=[] if IS_SUBMOUNT else "*", async_mode="asgi"
|
|
176
|
+
)
|
|
174
177
|
|
|
175
178
|
combined_asgi_app = socketio.ASGIApp(
|
|
176
179
|
sio,
|
|
@@ -178,6 +181,14 @@ combined_asgi_app = socketio.ASGIApp(
|
|
|
178
181
|
socketio_path=f"{ROOT_PATH}/ws/socket.io" if ROOT_PATH else "/ws/socket.io",
|
|
179
182
|
)
|
|
180
183
|
|
|
184
|
+
app.add_middleware(
|
|
185
|
+
CORSMiddleware,
|
|
186
|
+
allow_origins=config.project.allow_origins,
|
|
187
|
+
allow_credentials=True,
|
|
188
|
+
allow_methods=["*"],
|
|
189
|
+
allow_headers=["*"],
|
|
190
|
+
)
|
|
191
|
+
|
|
181
192
|
router = APIRouter(prefix=ROOT_PATH)
|
|
182
193
|
|
|
183
194
|
app.mount(
|
|
@@ -204,14 +215,6 @@ app.mount(
|
|
|
204
215
|
name="copilot",
|
|
205
216
|
)
|
|
206
217
|
|
|
207
|
-
app.add_middleware(
|
|
208
|
-
CORSMiddleware,
|
|
209
|
-
allow_origins=config.project.allow_origins,
|
|
210
|
-
allow_credentials=True,
|
|
211
|
-
allow_methods=["*"],
|
|
212
|
-
allow_headers=["*"],
|
|
213
|
-
)
|
|
214
|
-
|
|
215
218
|
|
|
216
219
|
# -------------------------------------------------------------------------------
|
|
217
220
|
# SLACK HANDLER
|
chainlit/slack/app.py
CHANGED
|
@@ -176,8 +176,8 @@ async def get_user(slack_user_id: str):
|
|
|
176
176
|
slack_user = await slack_app.client.users_info(user=slack_user_id)
|
|
177
177
|
slack_user_profile = slack_user["user"]["profile"]
|
|
178
178
|
|
|
179
|
-
|
|
180
|
-
user = User(identifier=USER_PREFIX +
|
|
179
|
+
user_identifier = slack_user_profile.get("email") or slack_user_id
|
|
180
|
+
user = User(identifier=USER_PREFIX + user_identifier, metadata=slack_user_profile)
|
|
181
181
|
|
|
182
182
|
users_by_slack_id[slack_user_id] = user
|
|
183
183
|
|
chainlit/socket.py
CHANGED
|
@@ -20,8 +20,8 @@ from chainlit.types import (
|
|
|
20
20
|
AudioChunk,
|
|
21
21
|
AudioChunkPayload,
|
|
22
22
|
AudioEndPayload,
|
|
23
|
+
MessagePayload,
|
|
23
24
|
SystemMessagePayload,
|
|
24
|
-
UserMessagePayload,
|
|
25
25
|
)
|
|
26
26
|
from chainlit.user_session import user_sessions
|
|
27
27
|
|
|
@@ -248,12 +248,12 @@ async def stop(sid):
|
|
|
248
248
|
await config.code.on_stop()
|
|
249
249
|
|
|
250
250
|
|
|
251
|
-
async def process_message(session: WebsocketSession, payload:
|
|
251
|
+
async def process_message(session: WebsocketSession, payload: MessagePayload):
|
|
252
252
|
"""Process a message from the user."""
|
|
253
253
|
try:
|
|
254
254
|
context = init_ws_context(session)
|
|
255
255
|
await context.emitter.task_start()
|
|
256
|
-
message = await context.emitter.
|
|
256
|
+
message = await context.emitter.process_message(payload)
|
|
257
257
|
|
|
258
258
|
if config.code.on_message:
|
|
259
259
|
# Sleep 1ms to make sure any children step starts after the message step start
|
|
@@ -270,8 +270,8 @@ async def process_message(session: WebsocketSession, payload: UserMessagePayload
|
|
|
270
270
|
await context.emitter.task_end()
|
|
271
271
|
|
|
272
272
|
|
|
273
|
-
@sio.on("
|
|
274
|
-
async def message(sid, payload:
|
|
273
|
+
@sio.on("client_message")
|
|
274
|
+
async def message(sid, payload: MessagePayload):
|
|
275
275
|
"""Handle a message sent by the User."""
|
|
276
276
|
session = WebsocketSession.require(sid)
|
|
277
277
|
|
|
@@ -279,23 +279,6 @@ async def message(sid, payload: UserMessagePayload):
|
|
|
279
279
|
session.current_task = task
|
|
280
280
|
|
|
281
281
|
|
|
282
|
-
@sio.on("system_message")
|
|
283
|
-
async def on_system_message(sid, payload: SystemMessagePayload):
|
|
284
|
-
"""Handle a message sent by the User."""
|
|
285
|
-
session = WebsocketSession.require(sid)
|
|
286
|
-
|
|
287
|
-
init_ws_context(session)
|
|
288
|
-
message = Message(
|
|
289
|
-
type="system_message",
|
|
290
|
-
content=payload["content"],
|
|
291
|
-
metadata=payload.get("metadata"),
|
|
292
|
-
)
|
|
293
|
-
asyncio.create_task(message._create())
|
|
294
|
-
|
|
295
|
-
if config.code.on_system_message:
|
|
296
|
-
await config.code.on_system_message(message)
|
|
297
|
-
|
|
298
|
-
|
|
299
282
|
@sio.on("audio_chunk")
|
|
300
283
|
async def audio_chunk(sid, payload: AudioChunkPayload):
|
|
301
284
|
"""Handle an audio chunk sent by the user."""
|
chainlit/types.py
CHANGED
chainlit/utils.py
CHANGED
|
@@ -116,6 +116,7 @@ def check_file(target: str):
|
|
|
116
116
|
|
|
117
117
|
def mount_chainlit(app: FastAPI, target: str, path="/chainlit"):
|
|
118
118
|
os.environ["CHAINLIT_ROOT_PATH"] = path
|
|
119
|
+
os.environ["CHAINLIT_SUBMOUNT"] = "true"
|
|
119
120
|
from chainlit.config import config, load_module
|
|
120
121
|
from chainlit.server import combined_asgi_app as chainlit_app
|
|
121
122
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
chainlit/__init__.py,sha256=
|
|
1
|
+
chainlit/__init__.py,sha256=g6MbN4Vuf8PbJTpTE2XNqVt-GklWQCk8g5_JZGbrB8M,11052
|
|
2
2
|
chainlit/__main__.py,sha256=7Vg3w3T3qDuz4KDu5lQhLH6lQ3cYdume7gHH7Z1V97U,87
|
|
3
3
|
chainlit/action.py,sha256=k-GsblVHI4DnDWFyF-RZgq3KfdfAFICFh2OBeU4w8N8,1410
|
|
4
4
|
chainlit/auth.py,sha256=lLHePwmwKzX0LiWqpTAtKTdSecrDLqCMSY9Yw4c-TD8,2681
|
|
5
5
|
chainlit/cache.py,sha256=Bv3dT4eHhE6Fq3c6Do0ZTpiyoXgXYewdxTgpYghEd9g,1361
|
|
6
6
|
chainlit/chat_settings.py,sha256=2ByenmwS8O6jQjDVJjhhbLrBPGA5aY2F7R3VvQQxXPk,877
|
|
7
|
-
chainlit/cli/__init__.py,sha256=
|
|
8
|
-
chainlit/config.py,sha256=
|
|
7
|
+
chainlit/cli/__init__.py,sha256=iLyxU_9db-2n_MaSr6V0VNoQDxhwRIT10-OGlENlq7o,6163
|
|
8
|
+
chainlit/config.py,sha256=o2eF5q6O2xSYXAryW8xljuj98HH8u_AFWpTq6bHbrqM,16712
|
|
9
9
|
chainlit/context.py,sha256=wVtOHIAS9NufvnIW8e4VPHgD7W7pyrstEQGt29FtILc,3075
|
|
10
10
|
chainlit/copilot/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
11
11
|
chainlit/copilot/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
12
|
-
chainlit/copilot/dist/index.js,sha256=
|
|
12
|
+
chainlit/copilot/dist/index.js,sha256=nnRtMY1HcLmpOTmwk9ah8tLwgp8_dpDSUJb1voFRW7w,6752568
|
|
13
13
|
chainlit/data/__init__.py,sha256=cUT49s5AhIm5WDlESQEpahSl7k6nzlMAYSJgO_00kO0,17092
|
|
14
14
|
chainlit/data/acl.py,sha256=5EwZuKVcZediw77L661MohGce3JzGIaYmw6NutmMTw0,578
|
|
15
15
|
chainlit/data/dynamodb.py,sha256=u5L9xqp0FG6J2VuGqUjMiJmIddL5jXs4MUcoZb4mXsM,19420
|
|
@@ -18,28 +18,28 @@ chainlit/data/storage_clients.py,sha256=D9KY1XKDjZh2uuh01ECxeoEtjw-JlrCR-WCuOueP
|
|
|
18
18
|
chainlit/discord/__init__.py,sha256=kZ_AAMaCToqO-1FdeQ8_IHS2pqNT0QJ-yyd8bCMaHHs,198
|
|
19
19
|
chainlit/discord/app.py,sha256=KvBS-bL89tKzzz2-lqCQVaI2hb4qYTyhl_TzCdhMfHQ,10540
|
|
20
20
|
chainlit/element.py,sha256=sjOgHjDaTuQ-t663dmBT-iBOgSVTn3mTlbSGjE42LjE,10990
|
|
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-5511e258.js,sha256=EaxDteDFQEEeGB58V71n7IbcgVekdU9-ZwPn3wz5NDU,2753949
|
|
21
|
+
chainlit/emitter.py,sha256=BbZ0GwEY9DQu7cN2khgMqT7GzRK3dShPIJMRRwnGuag,13082
|
|
22
|
+
chainlit/frontend/dist/assets/DailyMotion-578b63e6.js,sha256=FljqIxuYhDmbN82fvg-_8c_mlTZPj_G_DefTX4TKuUk,2961
|
|
23
|
+
chainlit/frontend/dist/assets/Facebook-b825e5bb.js,sha256=SML0392XsEaiAX-umB3X4P1VxMmeyNGKSwNrf16504A,3216
|
|
24
|
+
chainlit/frontend/dist/assets/FilePlayer-bcba3b4e.js,sha256=YxE74TiGD3kSs4tUhlyV39d2axLSOZ7ogfzsZq1MQdo,9041
|
|
25
|
+
chainlit/frontend/dist/assets/Kaltura-fc1c9497.js,sha256=6GrAMBk1kETlbpFzcPMOOYkbjk_CUQem-nuiD2FimTw,2790
|
|
26
|
+
chainlit/frontend/dist/assets/Mixcloud-4cfb2724.js,sha256=DLVwQ7RLYm4dvfClyoSFDB6rjG7vCFv8hiNbSN-vNYY,2638
|
|
27
|
+
chainlit/frontend/dist/assets/Mux-aa92055c.js,sha256=unvszOgiIQfmZhFtEeIXJE5eiSr6w8Jx1sRpGZX4VlQ,5360
|
|
28
|
+
chainlit/frontend/dist/assets/Preview-9f55905a.js,sha256=RXuDNVigADyu5lGUk-y5QrhiPp1RHqcE5-RylFprdBo,3011
|
|
29
|
+
chainlit/frontend/dist/assets/SoundCloud-f991fe03.js,sha256=z8XVOBBfaskYyC-bRCsXb6qDFTH4mebmR5jsR5IiH44,2923
|
|
30
|
+
chainlit/frontend/dist/assets/Streamable-53128f49.js,sha256=7WZSefvfRi_qnIS9LTa3PFrs-pgr48YiXM1DXplb1LI,2935
|
|
31
|
+
chainlit/frontend/dist/assets/Twitch-fce8b9f5.js,sha256=H3rQ8YEW6AcejSWtvaVAcfjzQdYgdULPye5mTZ_nc_4,3083
|
|
32
|
+
chainlit/frontend/dist/assets/Vidyard-e35c6102.js,sha256=UW5ad17Jlo5U1BjQG6sFEHvAp8ic6en2Uvb-4DuVb04,2857
|
|
33
|
+
chainlit/frontend/dist/assets/Vimeo-fff35f8e.js,sha256=brWSILraomEKxRDGFR56wwZl81gvxvAvSVbGMCbHvB0,3627
|
|
34
|
+
chainlit/frontend/dist/assets/Wistia-ec07dc64.js,sha256=VU557IGXuda6KYDPVrohXQWDoyIX385ooBt2eIn6LZA,3514
|
|
35
|
+
chainlit/frontend/dist/assets/YouTube-ad068e2a.js,sha256=h-dP39j7ZP7AeqCrJLKlv_ZMD20GSc8nQeMJSaEiMLI,4448
|
|
37
36
|
chainlit/frontend/dist/assets/index-aaf974a9.css,sha256=qvl0qUmR5u0JcmJAfkzaZpN-0ZKdQjzqCSE9cnrQpZQ,2559
|
|
37
|
+
chainlit/frontend/dist/assets/index-d40d41cc.js,sha256=q548b7K04T5yFuuKXr3Z7_y24V5iM7ti_BNfLkRNgoQ,2753963
|
|
38
38
|
chainlit/frontend/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
39
39
|
chainlit/frontend/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
40
|
-
chainlit/frontend/dist/assets/react-plotly-
|
|
40
|
+
chainlit/frontend/dist/assets/react-plotly-b2c6442b.js,sha256=zOhmPUI82UBQWmBpKFKuAQF_bQT-sXGbG3-kigjMQQ4,3739251
|
|
41
41
|
chainlit/frontend/dist/favicon.svg,sha256=0Cy8x28obT5eWW3nxZRhsEvu6_zMqrqbg0y6hT3D0Q0,6455
|
|
42
|
-
chainlit/frontend/dist/index.html,sha256=
|
|
42
|
+
chainlit/frontend/dist/index.html,sha256=cIwIROqkmnFNLWkOz4N_7S91qPJA6r9SuYe4pNguwS8,965
|
|
43
43
|
chainlit/haystack/__init__.py,sha256=uZ77YiPy-qleSTi3dQCDO9HE6S6F6GpJWmh7jO4cxXA,217
|
|
44
44
|
chainlit/haystack/callbacks.py,sha256=tItLc6OmskPeDEJH2Qjtg7KgAgIy1TuYQYHTZm9cr3U,5209
|
|
45
45
|
chainlit/hello.py,sha256=LwENQWo5s5r8nNDn4iKSV77vX60Ky5r_qGjQhyi7qlY,416
|
|
@@ -52,15 +52,15 @@ chainlit/llama_index/callbacks.py,sha256=THFmwotSF_ibqFuaQgxGvEjgKmmzoGJKNlVI75S
|
|
|
52
52
|
chainlit/logger.py,sha256=wTwRSZsLfXwWy6U4351IgWAm4KCMThgxm9EZpjGUEr4,373
|
|
53
53
|
chainlit/markdown.py,sha256=VUpqW7MqgjiPIQYHU4funwqC4GmHZBu_TGZTjTI4B0k,2025
|
|
54
54
|
chainlit/message.py,sha256=aEw2VNZ0-4mAC3PSG-0j5ZjO1qZ9MaUFDnfiAXLM_q8,17997
|
|
55
|
-
chainlit/oauth_providers.py,sha256=
|
|
55
|
+
chainlit/oauth_providers.py,sha256=Mv31biQ84EBJfQGBxqhFfnbpl-jfQ_Zn6IxKY3XZg6Q,22972
|
|
56
56
|
chainlit/openai/__init__.py,sha256=DJP_ptclLUM5Zylr4RO1Vk0lCufo3yDqXyH5J9izYS8,1814
|
|
57
57
|
chainlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
58
|
chainlit/secret.py,sha256=cQvIFGTQ7r2heC8EOGdgifSZZYqslh-qQxhUhKhD8vU,295
|
|
59
|
-
chainlit/server.py,sha256=
|
|
59
|
+
chainlit/server.py,sha256=H8Oj4rEqY9OulwbNoZzcTc53U0vuYXUPREhYUNKLqpM,28626
|
|
60
60
|
chainlit/session.py,sha256=SOX2zFct3apiSNcIzCDWgDRsUFgUG_6hewqWU8gfIZE,9694
|
|
61
61
|
chainlit/slack/__init__.py,sha256=Q41ztJHeVmpoXVgVqAcwGOufQp_bjf7dDT7eEXDdhPI,207
|
|
62
|
-
chainlit/slack/app.py,sha256=
|
|
63
|
-
chainlit/socket.py,sha256=
|
|
62
|
+
chainlit/slack/app.py,sha256=FgrlaupsCo-_1m8FiFcS5s-wFg_28bCjfKnawvlVbEM,11646
|
|
63
|
+
chainlit/socket.py,sha256=0xUoHRQXqhTb9IB9k7rMM7gYIoLQgZed6jV337KtL54,11824
|
|
64
64
|
chainlit/step.py,sha256=rLlK_dhZNKidK5Q7FtP_sNmlm-zUyjF4gHLPxl3PHA8,14213
|
|
65
65
|
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
66
66
|
chainlit/teams/__init__.py,sha256=ZSEbsRJHT_mKfGn6yuzM5NX-xItleSDS0af7vt8Z1OA,217
|
|
@@ -68,12 +68,12 @@ chainlit/teams/app.py,sha256=i4uu5BizcPH_h824ZFBNbpqM0weCfpPt3zb8YpQ-5po,10378
|
|
|
68
68
|
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
69
69
|
chainlit/translations/en-US.json,sha256=J46wpkc01XLnytWNLSziillMvfmwXsc-mIUeYDIy59M,7741
|
|
70
70
|
chainlit/translations.py,sha256=WG_r7HzxBYns-zk9tVvoGdoofv71okTZx8k1RlcoTIg,2034
|
|
71
|
-
chainlit/types.py,sha256=
|
|
71
|
+
chainlit/types.py,sha256=1W_IexztYW5ewOfxXtdL6qJHWYLWJ5qC9JG0iu6Rnv4,5329
|
|
72
72
|
chainlit/user.py,sha256=8PgRJvv59b7BKTNguObo68gyFoOGNJfVkT3WW-fvhAM,671
|
|
73
73
|
chainlit/user_session.py,sha256=G1amgs1_h2tVn4mtAXZmunm9nlBHQ_rCYvJQh3nsVwQ,1645
|
|
74
|
-
chainlit/utils.py,sha256=
|
|
74
|
+
chainlit/utils.py,sha256=w3UIzvaQ72y5VrycFoWaqS_NocS40No7mzPWqkelzCE,3939
|
|
75
75
|
chainlit/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
76
|
-
chainlit-1.1.
|
|
77
|
-
chainlit-1.1.
|
|
78
|
-
chainlit-1.1.
|
|
79
|
-
chainlit-1.1.
|
|
76
|
+
chainlit-1.1.301.dist-info/METADATA,sha256=Kh2rf0xg4Cm4O8G67VjEVp7a2h1OaHLW6ukJ4bLsY7w,6315
|
|
77
|
+
chainlit-1.1.301.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
78
|
+
chainlit-1.1.301.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
79
|
+
chainlit-1.1.301.dist-info/RECORD,,
|