chainlit 1.1.300rc5__py3-none-any.whl → 1.1.302__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 +96 -96
- chainlit/emitter.py +4 -4
- chainlit/frontend/dist/assets/{DailyMotion-f9db5a1d.js → DailyMotion-92fc1621.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-f95b29c9.js → Facebook-644622d4.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-ba3f562c.js → FilePlayer-adb407f0.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-195ed801.js → Kaltura-9432f468.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-f64c6d87.js → Mixcloud-f0974962.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-206cbddc.js → Mux-b96eaa94.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-af249586.js → Preview-b3ef64e8.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-80a26cdf.js → SoundCloud-09b74715.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-f80b255d.js → Streamable-48c1fa82.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-0e2f1d13.js → Twitch-457de5f4.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-bd67bfc6.js → Vidyard-d5e20d28.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-f9496a5d.js → Vimeo-dd6bf7ea.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-a943e0aa.js → Wistia-a4a2bf34.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-cf572a1f.js → YouTube-f20013d0.js} +1 -1
- chainlit/frontend/dist/assets/index-e0971e86.js +727 -0
- chainlit/frontend/dist/assets/{react-plotly-74b55763.js → react-plotly-29626c74.js} +1 -1
- chainlit/frontend/dist/index.html +1 -1
- chainlit/langchain/callbacks.py +1 -1
- chainlit/oauth_providers.py +33 -3
- chainlit/server.py +13 -10
- chainlit/slack/app.py +2 -2
- chainlit/socket.py +5 -23
- chainlit/types.py +1 -6
- chainlit/utils.py +1 -0
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.302.dist-info}/METADATA +2 -2
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.302.dist-info}/RECORD +33 -33
- chainlit/frontend/dist/assets/index-5511e258.js +0 -727
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.302.dist-info}/WHEEL +0 -0
- {chainlit-1.1.300rc5.dist-info → chainlit-1.1.302.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-e0971e86.js"></script>
|
|
25
25
|
<link rel="stylesheet" href="/assets/index-aaf974a9.css">
|
|
26
26
|
</head>
|
|
27
27
|
<body>
|
chainlit/langchain/callbacks.py
CHANGED
|
@@ -462,7 +462,7 @@ class LangchainTracer(BaseTracer, GenerationHelper, FinalStreamHelper):
|
|
|
462
462
|
elif run.run_type == "embedding":
|
|
463
463
|
step_type = "embedding"
|
|
464
464
|
|
|
465
|
-
if not self.steps:
|
|
465
|
+
if not self.steps and step_type != "llm":
|
|
466
466
|
step_type = "run"
|
|
467
467
|
|
|
468
468
|
disable_feedback = not self._is_annotable(run)
|
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,7 @@ from chainlit.types import (
|
|
|
20
20
|
AudioChunk,
|
|
21
21
|
AudioChunkPayload,
|
|
22
22
|
AudioEndPayload,
|
|
23
|
-
|
|
24
|
-
UserMessagePayload,
|
|
23
|
+
MessagePayload,
|
|
25
24
|
)
|
|
26
25
|
from chainlit.user_session import user_sessions
|
|
27
26
|
|
|
@@ -248,12 +247,12 @@ async def stop(sid):
|
|
|
248
247
|
await config.code.on_stop()
|
|
249
248
|
|
|
250
249
|
|
|
251
|
-
async def process_message(session: WebsocketSession, payload:
|
|
250
|
+
async def process_message(session: WebsocketSession, payload: MessagePayload):
|
|
252
251
|
"""Process a message from the user."""
|
|
253
252
|
try:
|
|
254
253
|
context = init_ws_context(session)
|
|
255
254
|
await context.emitter.task_start()
|
|
256
|
-
message = await context.emitter.
|
|
255
|
+
message = await context.emitter.process_message(payload)
|
|
257
256
|
|
|
258
257
|
if config.code.on_message:
|
|
259
258
|
# Sleep 1ms to make sure any children step starts after the message step start
|
|
@@ -270,8 +269,8 @@ async def process_message(session: WebsocketSession, payload: UserMessagePayload
|
|
|
270
269
|
await context.emitter.task_end()
|
|
271
270
|
|
|
272
271
|
|
|
273
|
-
@sio.on("
|
|
274
|
-
async def message(sid, payload:
|
|
272
|
+
@sio.on("client_message")
|
|
273
|
+
async def message(sid, payload: MessagePayload):
|
|
275
274
|
"""Handle a message sent by the User."""
|
|
276
275
|
session = WebsocketSession.require(sid)
|
|
277
276
|
|
|
@@ -279,23 +278,6 @@ async def message(sid, payload: UserMessagePayload):
|
|
|
279
278
|
session.current_task = task
|
|
280
279
|
|
|
281
280
|
|
|
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
281
|
@sio.on("audio_chunk")
|
|
300
282
|
async def audio_chunk(sid, payload: AudioChunkPayload):
|
|
301
283
|
"""Handle an audio chunk sent by the user."""
|
chainlit/types.py
CHANGED
|
@@ -150,16 +150,11 @@ class FileDict(TypedDict):
|
|
|
150
150
|
type: str
|
|
151
151
|
|
|
152
152
|
|
|
153
|
-
class
|
|
153
|
+
class MessagePayload(TypedDict):
|
|
154
154
|
message: "StepDict"
|
|
155
155
|
fileReferences: Optional[List[FileReference]]
|
|
156
156
|
|
|
157
157
|
|
|
158
|
-
class SystemMessagePayload(TypedDict):
|
|
159
|
-
content: str
|
|
160
|
-
metadata: Optional[Dict[str, Any]]
|
|
161
|
-
|
|
162
|
-
|
|
163
158
|
class AudioChunkPayload(TypedDict):
|
|
164
159
|
isStart: bool
|
|
165
160
|
mimeType: str
|
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,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chainlit
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.302
|
|
4
4
|
Summary: Build Conversational AI.
|
|
5
5
|
Home-page: https://github.com/Chainlit/chainlit
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -132,7 +132,7 @@ Full documentation is available [here](https://docs.chainlit.io). Key features:
|
|
|
132
132
|
- [💬 Multi Modal chats](https://docs.chainlit.io/advanced-features/multi-modal)
|
|
133
133
|
- [💭 Chain of Thought visualisation](https://docs.chainlit.io/concepts/step)
|
|
134
134
|
- [💾 Data persistence + human feedback](https://docs.chainlit.io/data-persistence/overview)
|
|
135
|
-
- [
|
|
135
|
+
- [🐛 Debug Mode](https://docs.chainlit.io/data-persistence/enterprise#debug-mode)
|
|
136
136
|
- [👤 Authentication](https://docs.chainlit.io/authentication/overview)
|
|
137
137
|
|
|
138
138
|
Chainlit is compatible with all Python programs and libraries. That being said, it comes with integrations for:
|
|
@@ -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=IQ4GXddn_eoOoremJuPTLBPdoh8oBKjfhvD_yuKcWPM,6752750
|
|
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,49 +18,49 @@ 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-92fc1621.js,sha256=QLKtqpgoIxiBNDkFECw8hFc6HbtVOPtT4ZH1ue8EJT4,2961
|
|
23
|
+
chainlit/frontend/dist/assets/Facebook-644622d4.js,sha256=fm0LKjH0zMVb0CFpx0eiId7T6Yg9b_xgYivh43cfd3c,3216
|
|
24
|
+
chainlit/frontend/dist/assets/FilePlayer-adb407f0.js,sha256=ifGyxR_zg-5vuyBCQjh_SxihcCxdPCrgqz5EIgpe3Dk,9041
|
|
25
|
+
chainlit/frontend/dist/assets/Kaltura-9432f468.js,sha256=HfeXjoFkgcJvbqW50JTbDpZJtJqNJYGjyY00GbfYkHA,2790
|
|
26
|
+
chainlit/frontend/dist/assets/Mixcloud-f0974962.js,sha256=ZZn0BYEajIREj_LO9N0FHyeUhrvt96_I44CcEQSwjwU,2638
|
|
27
|
+
chainlit/frontend/dist/assets/Mux-b96eaa94.js,sha256=27Zx97aNJL_MSuR4G9BH7v8YhQfXIApiLiyTHpeh2Vs,5360
|
|
28
|
+
chainlit/frontend/dist/assets/Preview-b3ef64e8.js,sha256=gBxq2AX0O0sKtezVfzd0Bws3TtYIqhFPNDSHXxXN9sg,3011
|
|
29
|
+
chainlit/frontend/dist/assets/SoundCloud-09b74715.js,sha256=YHMEfOMGs41NWov_g78onOEoQK-vEq5cL2-WPOnuTr8,2923
|
|
30
|
+
chainlit/frontend/dist/assets/Streamable-48c1fa82.js,sha256=NB5dJIrYbS4CPMf6Yb2oHEEVe58LxN8uOow46tBXb-E,2935
|
|
31
|
+
chainlit/frontend/dist/assets/Twitch-457de5f4.js,sha256=nxuC2DSwyZUeZguusQMgkZ4VFeCJnCL8RFJNfSWOkxQ,3083
|
|
32
|
+
chainlit/frontend/dist/assets/Vidyard-d5e20d28.js,sha256=Y7Nz6hC97eXLi8QW36g3vQ2dkTvCDx97F-X46mtj5Lk,2857
|
|
33
|
+
chainlit/frontend/dist/assets/Vimeo-dd6bf7ea.js,sha256=ZooatCLxtDXDOOTatLwYIr-YreUfgPAOXQplPiE0JVw,3627
|
|
34
|
+
chainlit/frontend/dist/assets/Wistia-a4a2bf34.js,sha256=Agrw0b2OcOuM9XHeBX9raidzN_T02jp3Uig4UwbUBlQ,3514
|
|
35
|
+
chainlit/frontend/dist/assets/YouTube-f20013d0.js,sha256=y43VOm3isboiGjwVKeUyrGfsLYcVmzCZ3RPxTDkoIjA,4448
|
|
37
36
|
chainlit/frontend/dist/assets/index-aaf974a9.css,sha256=qvl0qUmR5u0JcmJAfkzaZpN-0ZKdQjzqCSE9cnrQpZQ,2559
|
|
37
|
+
chainlit/frontend/dist/assets/index-e0971e86.js,sha256=Zg6tZLAvv1ITSBSaezbsnZ9ZjjS4eSYABjmopv_Busk,2754146
|
|
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-29626c74.js,sha256=rBCG3fI_Az2UJkGpxBkNBNwp2535KHl7aI2oEnYf9o8,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=nkiflidFwROAB_Xlpo3NuO8dZQ55zncNIkSRgc8TtVE,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
|
|
46
46
|
chainlit/input_widget.py,sha256=KmOn1nPTBvnld3iIBHR0Vih0KsCxVnTbo2t_xBNANzo,4949
|
|
47
47
|
chainlit/langchain/__init__.py,sha256=zErMw0_3ufSGeF9ye7X0ZX3wDat4mTOx97T40ePDO2g,217
|
|
48
|
-
chainlit/langchain/callbacks.py,sha256=
|
|
48
|
+
chainlit/langchain/callbacks.py,sha256=y8YBbMuQz419aqoEOaW6kMugHJ2_UprBoObE4GP8xBM,20540
|
|
49
49
|
chainlit/langflow/__init__.py,sha256=wxhxdsl1yxdsRyNTgZticxFF_8VFtJJ4OdIy3tnEIyM,817
|
|
50
50
|
chainlit/llama_index/__init__.py,sha256=weRoIWCaRBGvA1LczCEfsqhWsltQSVlhtRnTovtdo8w,227
|
|
51
51
|
chainlit/llama_index/callbacks.py,sha256=THFmwotSF_ibqFuaQgxGvEjgKmmzoGJKNlVI75SI2ig,7267
|
|
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=nXe8zzbVex7FzDqIT6n7ve5HrjZu4ZmdnLo2gPkMcLE,11798
|
|
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=JsEO0VyY6r2T3o_q-lkNw6Li-XDkuoPmWaAtc90THFs,5232
|
|
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.302.dist-info/METADATA,sha256=XeCLkKwUhzuKaugKa3MAWG5rRiLP7p4H-fTlZ4rbWbg,6291
|
|
77
|
+
chainlit-1.1.302.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
78
|
+
chainlit-1.1.302.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
79
|
+
chainlit-1.1.302.dist-info/RECORD,,
|