chainlit 1.1.400__py3-none-any.whl → 1.1.400rc0__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 +114 -115
- chainlit/data/__init__.py +10 -8
- chainlit/discord/app.py +14 -8
- chainlit/frontend/dist/assets/{DailyMotion-e2c926d0.js → DailyMotion-5ec5da99.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-88f80aba.js → Facebook-5a35cd37.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-febd1b0d.js → FilePlayer-57960f33.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-606fe0bd.js → Kaltura-4e536514.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-b3db090a.js → Mixcloud-dcf9d9d8.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-ca847a7d.js → Mux-9eeb2f85.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-7a3747b5.js → Preview-e47b3c35.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-0da01fb1.js → SoundCloud-ceb64ec3.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-4a6ab048.js → Streamable-917b74f2.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-3e260619.js → Twitch-bb9e2900.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-73692980.js → Vidyard-01a5b6c5.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-6627c7a8.js → Vimeo-c31b01d5.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-27df9c66.js → Wistia-17e84a59.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-a11d419d.js → YouTube-e58540d7.js} +1 -1
- chainlit/frontend/dist/assets/{index-d66d1800.js → index-bfba5bbb.js} +97 -98
- chainlit/frontend/dist/assets/{react-plotly-012ed517.js → react-plotly-78a75e40.js} +1 -1
- chainlit/frontend/dist/index.html +1 -1
- chainlit/langchain/callbacks.py +8 -37
- chainlit/server.py +1 -1
- chainlit/slack/app.py +21 -19
- chainlit/step.py +6 -19
- chainlit/teams/app.py +12 -8
- {chainlit-1.1.400.dist-info → chainlit-1.1.400rc0.dist-info}/METADATA +1 -1
- {chainlit-1.1.400.dist-info → chainlit-1.1.400rc0.dist-info}/RECORD +29 -30
- chainlit/translations/zh-CN.json +0 -229
- {chainlit-1.1.400.dist-info → chainlit-1.1.400rc0.dist-info}/WHEEL +0 -0
- {chainlit-1.1.400.dist-info → chainlit-1.1.400rc0.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-bfba5bbb.js"></script>
|
|
25
25
|
<link rel="stylesheet" href="/assets/index-aaf974a9.css">
|
|
26
26
|
</head>
|
|
27
27
|
<body>
|
chainlit/langchain/callbacks.py
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import time
|
|
3
|
-
from typing import Any, Dict, List, Optional,
|
|
3
|
+
from typing import Any, Dict, List, Optional, TypedDict, Union
|
|
4
4
|
from uuid import UUID
|
|
5
5
|
|
|
6
|
+
from chainlit.context import context_var
|
|
7
|
+
from chainlit.message import Message
|
|
8
|
+
from chainlit.step import Step
|
|
6
9
|
from langchain.callbacks.tracers.base import BaseTracer
|
|
7
10
|
from langchain.callbacks.tracers.schemas import Run
|
|
8
11
|
from langchain.schema import BaseMessage
|
|
@@ -12,10 +15,6 @@ from literalai import ChatGeneration, CompletionGeneration, GenerationMessage
|
|
|
12
15
|
from literalai.helper import utc_now
|
|
13
16
|
from literalai.step import TrueStepType
|
|
14
17
|
|
|
15
|
-
from chainlit.context import context_var
|
|
16
|
-
from chainlit.message import Message
|
|
17
|
-
from chainlit.step import Step
|
|
18
|
-
|
|
19
18
|
DEFAULT_ANSWER_PREFIX_TOKENS = ["Final", "Answer", ":"]
|
|
20
19
|
|
|
21
20
|
|
|
@@ -230,24 +229,7 @@ class GenerationHelper:
|
|
|
230
229
|
return provider, model, tools, settings
|
|
231
230
|
|
|
232
231
|
|
|
233
|
-
|
|
234
|
-
if content is None:
|
|
235
|
-
return {}, None
|
|
236
|
-
if isinstance(content, dict):
|
|
237
|
-
return content, "json"
|
|
238
|
-
elif isinstance(content, str):
|
|
239
|
-
return {"content": content}, "text"
|
|
240
|
-
else:
|
|
241
|
-
return {"content": str(content)}, "text"
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
DEFAULT_TO_IGNORE = [
|
|
245
|
-
"RunnableSequence",
|
|
246
|
-
"RunnableParallel",
|
|
247
|
-
"RunnableAssign",
|
|
248
|
-
"RunnableLambda",
|
|
249
|
-
"<lambda>",
|
|
250
|
-
]
|
|
232
|
+
DEFAULT_TO_IGNORE = ["Runnable", "<lambda>"]
|
|
251
233
|
DEFAULT_TO_KEEP = ["retriever", "llm", "agent", "chain", "tool"]
|
|
252
234
|
|
|
253
235
|
|
|
@@ -483,11 +465,7 @@ class LangchainTracer(BaseTracer, GenerationHelper, FinalStreamHelper):
|
|
|
483
465
|
parent_id=parent_id,
|
|
484
466
|
)
|
|
485
467
|
step.start = utc_now()
|
|
486
|
-
step.input
|
|
487
|
-
if language is not None:
|
|
488
|
-
if step.metadata is None:
|
|
489
|
-
step.metadata = {}
|
|
490
|
-
step.metadata["language"] = language
|
|
468
|
+
step.input = run.inputs
|
|
491
469
|
|
|
492
470
|
self.steps[str(run.id)] = step
|
|
493
471
|
|
|
@@ -511,9 +489,6 @@ class LangchainTracer(BaseTracer, GenerationHelper, FinalStreamHelper):
|
|
|
511
489
|
generations = (run.outputs or {}).get("generations", [])
|
|
512
490
|
generation = generations[0][0]
|
|
513
491
|
variables = self.generation_inputs.get(str(run.parent_run_id), {})
|
|
514
|
-
variables = {
|
|
515
|
-
k: process_content(v) for k, v in variables.items() if v is not None
|
|
516
|
-
}
|
|
517
492
|
if message := generation.get("message"):
|
|
518
493
|
chat_start = self.chat_generations[str(run.id)]
|
|
519
494
|
duration = time.time() - chat_start["start"]
|
|
@@ -544,11 +519,7 @@ class LangchainTracer(BaseTracer, GenerationHelper, FinalStreamHelper):
|
|
|
544
519
|
"prompt_id"
|
|
545
520
|
]
|
|
546
521
|
if custom_variables := m.additional_kwargs.get("variables"):
|
|
547
|
-
current_step.generation.variables =
|
|
548
|
-
k: process_content(v)
|
|
549
|
-
for k, v in custom_variables.items()
|
|
550
|
-
if v is not None
|
|
551
|
-
}
|
|
522
|
+
current_step.generation.variables = custom_variables
|
|
552
523
|
break
|
|
553
524
|
|
|
554
525
|
current_step.language = "json"
|
|
@@ -592,7 +563,7 @@ class LangchainTracer(BaseTracer, GenerationHelper, FinalStreamHelper):
|
|
|
592
563
|
output = outputs.get(output_keys[0], outputs)
|
|
593
564
|
|
|
594
565
|
if current_step:
|
|
595
|
-
current_step.output
|
|
566
|
+
current_step.output = output
|
|
596
567
|
current_step.end = utc_now()
|
|
597
568
|
self._run_sync(current_step.update())
|
|
598
569
|
|
chainlit/server.py
CHANGED
|
@@ -266,7 +266,7 @@ def get_html_template():
|
|
|
266
266
|
)
|
|
267
267
|
url = config.ui.github or default_url
|
|
268
268
|
meta_image_url = config.ui.custom_meta_image_url or default_meta_image_url
|
|
269
|
-
favicon_path = "/favicon"
|
|
269
|
+
favicon_path = ROOT_PATH + "/favicon" if ROOT_PATH else "/favicon"
|
|
270
270
|
|
|
271
271
|
tags = f"""<title>{config.ui.name}</title>
|
|
272
272
|
<link rel="icon" href="{favicon_path}" />
|
chainlit/slack/app.py
CHANGED
|
@@ -29,16 +29,18 @@ class SlackEmitter(BaseChainlitEmitter):
|
|
|
29
29
|
app: AsyncApp,
|
|
30
30
|
channel_id: str,
|
|
31
31
|
say,
|
|
32
|
+
enabled=False,
|
|
32
33
|
thread_ts: Optional[str] = None,
|
|
33
34
|
):
|
|
34
35
|
super().__init__(session)
|
|
35
36
|
self.app = app
|
|
36
37
|
self.channel_id = channel_id
|
|
37
38
|
self.say = say
|
|
39
|
+
self.enabled = enabled
|
|
38
40
|
self.thread_ts = thread_ts
|
|
39
41
|
|
|
40
42
|
async def send_element(self, element_dict: ElementDict):
|
|
41
|
-
if element_dict.get("display") != "inline":
|
|
43
|
+
if not self.enabled or element_dict.get("display") != "inline":
|
|
42
44
|
return
|
|
43
45
|
|
|
44
46
|
persisted_file = self.session.files.get(element_dict.get("chainlitKey") or "")
|
|
@@ -63,11 +65,18 @@ class SlackEmitter(BaseChainlitEmitter):
|
|
|
63
65
|
)
|
|
64
66
|
|
|
65
67
|
async def send_step(self, step_dict: StepDict):
|
|
68
|
+
if not self.enabled:
|
|
69
|
+
return
|
|
70
|
+
|
|
66
71
|
step_type = step_dict.get("type")
|
|
67
|
-
|
|
72
|
+
is_message = step_type in [
|
|
73
|
+
"user_message",
|
|
74
|
+
"assistant_message",
|
|
75
|
+
]
|
|
76
|
+
is_chain_of_thought = bool(step_dict.get("parentId"))
|
|
68
77
|
is_empty_output = not step_dict.get("output")
|
|
69
78
|
|
|
70
|
-
if is_empty_output or not
|
|
79
|
+
if is_chain_of_thought or is_empty_output or not is_message:
|
|
71
80
|
return
|
|
72
81
|
|
|
73
82
|
enable_feedback = get_data_layer()
|
|
@@ -112,9 +121,7 @@ class SlackEmitter(BaseChainlitEmitter):
|
|
|
112
121
|
)
|
|
113
122
|
|
|
114
123
|
async def update_step(self, step_dict: StepDict):
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
if not is_assistant_message:
|
|
124
|
+
if not self.enabled:
|
|
118
125
|
return
|
|
119
126
|
|
|
120
127
|
await self.send_step(step_dict)
|
|
@@ -275,9 +282,6 @@ async def process_slack_message(
|
|
|
275
282
|
session, slack_files, slack_app.client.token
|
|
276
283
|
)
|
|
277
284
|
|
|
278
|
-
if on_chat_start := config.code.on_chat_start:
|
|
279
|
-
await on_chat_start()
|
|
280
|
-
|
|
281
285
|
msg = Message(
|
|
282
286
|
content=clean_content(text),
|
|
283
287
|
elements=file_elements,
|
|
@@ -287,6 +291,11 @@ async def process_slack_message(
|
|
|
287
291
|
|
|
288
292
|
await msg.send()
|
|
289
293
|
|
|
294
|
+
ctx.emitter.enabled = True
|
|
295
|
+
|
|
296
|
+
if on_chat_start := config.code.on_chat_start:
|
|
297
|
+
await on_chat_start()
|
|
298
|
+
|
|
290
299
|
if on_message := config.code.on_message:
|
|
291
300
|
await on_message(msg)
|
|
292
301
|
|
|
@@ -326,22 +335,15 @@ async def handle_app_mentions(event, say):
|
|
|
326
335
|
|
|
327
336
|
@slack_app.event("message")
|
|
328
337
|
async def handle_message(message, say):
|
|
338
|
+
user = await get_user(message["user"])
|
|
329
339
|
thread_id = str(
|
|
330
340
|
uuid.uuid5(
|
|
331
341
|
uuid.NAMESPACE_DNS,
|
|
332
342
|
message["channel"] + datetime.today().strftime("%Y-%m-%d"),
|
|
333
343
|
)
|
|
334
344
|
)
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
await process_slack_message(
|
|
339
|
-
event=message,
|
|
340
|
-
say=say,
|
|
341
|
-
thread_id=thread_id,
|
|
342
|
-
bind_thread_to_user=True,
|
|
343
|
-
thread_ts=thread_ts,
|
|
344
|
-
)
|
|
345
|
+
thread_name = f"{user.identifier} Slack DM {datetime.today().strftime('%Y-%m-%d')}"
|
|
346
|
+
await process_slack_message(message, say, thread_name, True)
|
|
345
347
|
|
|
346
348
|
|
|
347
349
|
@slack_app.block_action("thumbdown")
|
chainlit/step.py
CHANGED
|
@@ -29,18 +29,6 @@ def check_add_step_in_cot(step: "Step"):
|
|
|
29
29
|
return True
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
def stub_step(step: "Step"):
|
|
33
|
-
return {
|
|
34
|
-
"type": step.type,
|
|
35
|
-
"name": step.name,
|
|
36
|
-
"id": step.id,
|
|
37
|
-
"parentId": step.parent_id,
|
|
38
|
-
"threadId": step.thread_id,
|
|
39
|
-
"input": "",
|
|
40
|
-
"output": "",
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
32
|
class StepDict(TypedDict, total=False):
|
|
45
33
|
name: str
|
|
46
34
|
type: StepType
|
|
@@ -314,9 +302,9 @@ class Step:
|
|
|
314
302
|
await asyncio.gather(*tasks)
|
|
315
303
|
|
|
316
304
|
if not check_add_step_in_cot(self):
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
305
|
+
return True
|
|
306
|
+
|
|
307
|
+
await context.emitter.update_step(step_dict)
|
|
320
308
|
|
|
321
309
|
return True
|
|
322
310
|
|
|
@@ -368,9 +356,9 @@ class Step:
|
|
|
368
356
|
await asyncio.gather(*tasks)
|
|
369
357
|
|
|
370
358
|
if not check_add_step_in_cot(self):
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
359
|
+
return self
|
|
360
|
+
|
|
361
|
+
await context.emitter.send_step(step_dict)
|
|
374
362
|
|
|
375
363
|
return self
|
|
376
364
|
|
|
@@ -393,7 +381,6 @@ class Step:
|
|
|
393
381
|
assert self.id
|
|
394
382
|
|
|
395
383
|
if not check_add_step_in_cot(self):
|
|
396
|
-
await context.emitter.send_step(stub_step(self))
|
|
397
384
|
return
|
|
398
385
|
|
|
399
386
|
if not self.streaming:
|
chainlit/teams/app.py
CHANGED
|
@@ -42,12 +42,13 @@ from chainlit.user_session import user_session
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
class TeamsEmitter(BaseChainlitEmitter):
|
|
45
|
-
def __init__(self, session: HTTPSession, turn_context: TurnContext):
|
|
45
|
+
def __init__(self, session: HTTPSession, turn_context: TurnContext, enabled=False):
|
|
46
46
|
super().__init__(session)
|
|
47
47
|
self.turn_context = turn_context
|
|
48
|
+
self.enabled = enabled
|
|
48
49
|
|
|
49
50
|
async def send_element(self, element_dict: ElementDict):
|
|
50
|
-
if element_dict.get("display") != "inline":
|
|
51
|
+
if not self.enabled or element_dict.get("display") != "inline":
|
|
51
52
|
return
|
|
52
53
|
|
|
53
54
|
persisted_file = self.session.files.get(element_dict.get("chainlitKey") or "")
|
|
@@ -81,7 +82,7 @@ class TeamsEmitter(BaseChainlitEmitter):
|
|
|
81
82
|
await self.turn_context.send_activity(Activity(attachments=[attachment]))
|
|
82
83
|
|
|
83
84
|
async def send_step(self, step_dict: StepDict):
|
|
84
|
-
if not
|
|
85
|
+
if not self.enabled:
|
|
85
86
|
return
|
|
86
87
|
|
|
87
88
|
step_type = step_dict.get("type")
|
|
@@ -89,9 +90,10 @@ class TeamsEmitter(BaseChainlitEmitter):
|
|
|
89
90
|
"user_message",
|
|
90
91
|
"assistant_message",
|
|
91
92
|
]
|
|
93
|
+
is_chain_of_thought = bool(step_dict.get("parentId"))
|
|
92
94
|
is_empty_output = not step_dict.get("output")
|
|
93
95
|
|
|
94
|
-
if is_empty_output or not is_message:
|
|
96
|
+
if is_chain_of_thought or is_empty_output or not is_message:
|
|
95
97
|
return
|
|
96
98
|
else:
|
|
97
99
|
reply = MessageFactory.text(step_dict["output"])
|
|
@@ -120,7 +122,7 @@ class TeamsEmitter(BaseChainlitEmitter):
|
|
|
120
122
|
await self.turn_context.send_activity(reply)
|
|
121
123
|
|
|
122
124
|
async def update_step(self, step_dict: StepDict):
|
|
123
|
-
if not
|
|
125
|
+
if not self.enabled:
|
|
124
126
|
return
|
|
125
127
|
|
|
126
128
|
await self.send_step(step_dict)
|
|
@@ -254,9 +256,6 @@ async def process_teams_message(
|
|
|
254
256
|
|
|
255
257
|
file_elements = await download_teams_files(session, teams_files)
|
|
256
258
|
|
|
257
|
-
if on_chat_start := config.code.on_chat_start:
|
|
258
|
-
await on_chat_start()
|
|
259
|
-
|
|
260
259
|
msg = Message(
|
|
261
260
|
content=text,
|
|
262
261
|
elements=file_elements,
|
|
@@ -266,6 +265,11 @@ async def process_teams_message(
|
|
|
266
265
|
|
|
267
266
|
await msg.send()
|
|
268
267
|
|
|
268
|
+
ctx.emitter.enabled = True
|
|
269
|
+
|
|
270
|
+
if on_chat_start := config.code.on_chat_start:
|
|
271
|
+
await on_chat_start()
|
|
272
|
+
|
|
269
273
|
if on_message := config.code.on_message:
|
|
270
274
|
await on_message(msg)
|
|
271
275
|
|
|
@@ -10,43 +10,43 @@ chainlit/config.py,sha256=sPcSSSg9aKD87-ajWkGfPE1KiRAso2dCpvLUvybdTQA,16807
|
|
|
10
10
|
chainlit/context.py,sha256=RdLGlRjx8nBW1onooQdCdcbtMyIBGFlxYkL95oHacdk,3338
|
|
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=
|
|
14
|
-
chainlit/data/__init__.py,sha256=
|
|
13
|
+
chainlit/copilot/dist/index.js,sha256=RN0bzXL6A3qPyidCRbxGg527Rz9cktiNd5fmE2Dt8ho,6754990
|
|
14
|
+
chainlit/data/__init__.py,sha256=I7RpyhPzEbSx-Pu0ZnwEZZAIoSbJneR4B279T9tESyY,16950
|
|
15
15
|
chainlit/data/acl.py,sha256=5EwZuKVcZediw77L661MohGce3JzGIaYmw6NutmMTw0,578
|
|
16
16
|
chainlit/data/dynamodb.py,sha256=u5L9xqp0FG6J2VuGqUjMiJmIddL5jXs4MUcoZb4mXsM,19420
|
|
17
17
|
chainlit/data/sql_alchemy.py,sha256=fjKSqJqKsy9CBpXSZi6CPg3mFqfs_roZ1t9Y1XFinOM,26600
|
|
18
18
|
chainlit/data/storage_clients.py,sha256=D9KY1XKDjZh2uuh01ECxeoEtjw-JlrCR-WCuOuePVQI,3007
|
|
19
19
|
chainlit/discord/__init__.py,sha256=kZ_AAMaCToqO-1FdeQ8_IHS2pqNT0QJ-yyd8bCMaHHs,198
|
|
20
|
-
chainlit/discord/app.py,sha256
|
|
20
|
+
chainlit/discord/app.py,sha256=fSB56z6aCmDRgWGp7A9kRRcQCAzM23maOSOSgPSdNiM,11315
|
|
21
21
|
chainlit/element.py,sha256=sjOgHjDaTuQ-t663dmBT-iBOgSVTn3mTlbSGjE42LjE,10990
|
|
22
22
|
chainlit/emitter.py,sha256=vfPtgqeHfm5CxZrMHIUXjw7U0wGWYCrQonaEC2SK0vo,13036
|
|
23
|
-
chainlit/frontend/dist/assets/DailyMotion-
|
|
24
|
-
chainlit/frontend/dist/assets/Facebook-
|
|
25
|
-
chainlit/frontend/dist/assets/FilePlayer-
|
|
26
|
-
chainlit/frontend/dist/assets/Kaltura-
|
|
27
|
-
chainlit/frontend/dist/assets/Mixcloud-
|
|
28
|
-
chainlit/frontend/dist/assets/Mux-
|
|
29
|
-
chainlit/frontend/dist/assets/Preview-
|
|
30
|
-
chainlit/frontend/dist/assets/SoundCloud-
|
|
31
|
-
chainlit/frontend/dist/assets/Streamable-
|
|
32
|
-
chainlit/frontend/dist/assets/Twitch-
|
|
33
|
-
chainlit/frontend/dist/assets/Vidyard-
|
|
34
|
-
chainlit/frontend/dist/assets/Vimeo-
|
|
35
|
-
chainlit/frontend/dist/assets/Wistia-
|
|
36
|
-
chainlit/frontend/dist/assets/YouTube-
|
|
23
|
+
chainlit/frontend/dist/assets/DailyMotion-5ec5da99.js,sha256=yu-6VqFCmlqOft2gYF3kbEbumkhtRIQ-AhDI6b-XSJ4,2961
|
|
24
|
+
chainlit/frontend/dist/assets/Facebook-5a35cd37.js,sha256=GplF000LpT87_beGhj1IFcXdy17Zq3axKHiBgmlZQdw,3216
|
|
25
|
+
chainlit/frontend/dist/assets/FilePlayer-57960f33.js,sha256=6mq5PQdDzoKF0V4E19YiBWaTZOZx8iewaTBKeDzs3wI,9041
|
|
26
|
+
chainlit/frontend/dist/assets/Kaltura-4e536514.js,sha256=T2YUJ9uivi0W0gVlXQxkUlBBY9Daau6hAR2Ac2lwlrU,2790
|
|
27
|
+
chainlit/frontend/dist/assets/Mixcloud-dcf9d9d8.js,sha256=4iEVkki9MQudFcntekTwGyIxnRgfQP87tytA1Qq13Xs,2638
|
|
28
|
+
chainlit/frontend/dist/assets/Mux-9eeb2f85.js,sha256=EjGtHArJKFkhxNplSXmdcCp-OvywtqFuqdHDR8Bx-E0,5360
|
|
29
|
+
chainlit/frontend/dist/assets/Preview-e47b3c35.js,sha256=o8VztVi8OzCWCmy-28gxNixosWgiLqh_Sowwf_Q55NU,3011
|
|
30
|
+
chainlit/frontend/dist/assets/SoundCloud-ceb64ec3.js,sha256=5bmbvfin_N6r_JmOs-LPrOo9xKTSP0duwGw2cR2KlBM,2923
|
|
31
|
+
chainlit/frontend/dist/assets/Streamable-917b74f2.js,sha256=ox1JIjq_8NXpbtiSef-yzZJKU_HIccEMxxlwMgELgbI,2935
|
|
32
|
+
chainlit/frontend/dist/assets/Twitch-bb9e2900.js,sha256=EbgEpGYuOfEGny-JaaA8lAF73Y4Ee9KWfjDfFp5n3Qo,3083
|
|
33
|
+
chainlit/frontend/dist/assets/Vidyard-01a5b6c5.js,sha256=q4J-LMBXQ3vafJTVBxLowxTIKhpu9rGaZU1biKAAag4,2857
|
|
34
|
+
chainlit/frontend/dist/assets/Vimeo-c31b01d5.js,sha256=XZMsRqC4o9gkoIADcNQmzEKYw_VyGxcVKID-uzEgDjk,3627
|
|
35
|
+
chainlit/frontend/dist/assets/Wistia-17e84a59.js,sha256=xVaS3wTl56uTSPNruBjPa24D-pZOmOyfmgIc4WqyWnY,3514
|
|
36
|
+
chainlit/frontend/dist/assets/YouTube-e58540d7.js,sha256=ESlBsS6kAlk5znD3NBk_8WtOvOEc6RkQ2lq0N21CslU,4448
|
|
37
37
|
chainlit/frontend/dist/assets/index-aaf974a9.css,sha256=qvl0qUmR5u0JcmJAfkzaZpN-0ZKdQjzqCSE9cnrQpZQ,2559
|
|
38
|
-
chainlit/frontend/dist/assets/index-
|
|
38
|
+
chainlit/frontend/dist/assets/index-bfba5bbb.js,sha256=dehfvt0JuIErPOeDWiryyb0q9EpvtieDwAPhkEDDeKw,2756363
|
|
39
39
|
chainlit/frontend/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
40
40
|
chainlit/frontend/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
41
|
-
chainlit/frontend/dist/assets/react-plotly-
|
|
41
|
+
chainlit/frontend/dist/assets/react-plotly-78a75e40.js,sha256=K54TEQSZ13N7DZ_YUdG3d5C2OcKphiyX20ksjlBKE8o,3739251
|
|
42
42
|
chainlit/frontend/dist/favicon.svg,sha256=0Cy8x28obT5eWW3nxZRhsEvu6_zMqrqbg0y6hT3D0Q0,6455
|
|
43
|
-
chainlit/frontend/dist/index.html,sha256=
|
|
43
|
+
chainlit/frontend/dist/index.html,sha256=GMvQyaOcdnpiA5VDycIEa2aETR36JRVeTZqbUQf42nA,965
|
|
44
44
|
chainlit/haystack/__init__.py,sha256=uZ77YiPy-qleSTi3dQCDO9HE6S6F6GpJWmh7jO4cxXA,217
|
|
45
45
|
chainlit/haystack/callbacks.py,sha256=goF1_Ua_SB0u_yaiYcAvvXCf-t47-DObmeuqE4VWrQc,5074
|
|
46
46
|
chainlit/hello.py,sha256=LwENQWo5s5r8nNDn4iKSV77vX60Ky5r_qGjQhyi7qlY,416
|
|
47
47
|
chainlit/input_widget.py,sha256=KmOn1nPTBvnld3iIBHR0Vih0KsCxVnTbo2t_xBNANzo,4949
|
|
48
48
|
chainlit/langchain/__init__.py,sha256=zErMw0_3ufSGeF9ye7X0ZX3wDat4mTOx97T40ePDO2g,217
|
|
49
|
-
chainlit/langchain/callbacks.py,sha256=
|
|
49
|
+
chainlit/langchain/callbacks.py,sha256=c2CsTULTuk1tyZa9LqqqdiF5sbVQvSvn5gTIOc_TZgk,20193
|
|
50
50
|
chainlit/langflow/__init__.py,sha256=wxhxdsl1yxdsRyNTgZticxFF_8VFtJJ4OdIy3tnEIyM,817
|
|
51
51
|
chainlit/llama_index/__init__.py,sha256=weRoIWCaRBGvA1LczCEfsqhWsltQSVlhtRnTovtdo8w,227
|
|
52
52
|
chainlit/llama_index/callbacks.py,sha256=ix9KGUbug10fZNnK02liq72I6oQlhpjEfbvVmAwNmbg,6547
|
|
@@ -58,25 +58,24 @@ chainlit/oauth_providers.py,sha256=Mv31biQ84EBJfQGBxqhFfnbpl-jfQ_Zn6IxKY3XZg6Q,2
|
|
|
58
58
|
chainlit/openai/__init__.py,sha256=aj8toIwvCktANU1TaH1verKS7ApS6tlhDZFtm1oTyCM,1715
|
|
59
59
|
chainlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
chainlit/secret.py,sha256=cQvIFGTQ7r2heC8EOGdgifSZZYqslh-qQxhUhKhD8vU,295
|
|
61
|
-
chainlit/server.py,sha256=
|
|
61
|
+
chainlit/server.py,sha256=kZ_L3v1C-jM85HJZyZZYPkiPtfYpP9iQRn5sdMOlMGo,28322
|
|
62
62
|
chainlit/session.py,sha256=_f99uxAyiRea3nf_E3acfFnDdLZU7evk4WXKtplkwXU,9283
|
|
63
63
|
chainlit/slack/__init__.py,sha256=Q41ztJHeVmpoXVgVqAcwGOufQp_bjf7dDT7eEXDdhPI,207
|
|
64
|
-
chainlit/slack/app.py,sha256=
|
|
64
|
+
chainlit/slack/app.py,sha256=H5Ptq_6YZ1mUQwWV9y9IFKF3GmZFWkMmEzVr1QAnx44,11838
|
|
65
65
|
chainlit/socket.py,sha256=P9fDWYo0u1PPZO7HPao99USDC3Qs52gB3PUzLTSXWA0,12778
|
|
66
|
-
chainlit/step.py,sha256=
|
|
66
|
+
chainlit/step.py,sha256=Vvc59qFSDAWaxejeCZWOwJcLtGjsdCp958chpwehwvU,13794
|
|
67
67
|
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
68
68
|
chainlit/teams/__init__.py,sha256=ZSEbsRJHT_mKfGn6yuzM5NX-xItleSDS0af7vt8Z1OA,217
|
|
69
|
-
chainlit/teams/app.py,sha256=
|
|
69
|
+
chainlit/teams/app.py,sha256=ZsoUMwYxPmjWN7qRe3IstRm00RYP3uUJu73gof4oFN0,10660
|
|
70
70
|
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
71
71
|
chainlit/translations/en-US.json,sha256=J46wpkc01XLnytWNLSziillMvfmwXsc-mIUeYDIy59M,7741
|
|
72
|
-
chainlit/translations/zh-CN.json,sha256=Y3MhXUDFi4YMxX8-agpCM68efYXCGcHqyqRAen8LLfk,7508
|
|
73
72
|
chainlit/translations.py,sha256=WG_r7HzxBYns-zk9tVvoGdoofv71okTZx8k1RlcoTIg,2034
|
|
74
73
|
chainlit/types.py,sha256=494SAbZ2m46KVcpWmxdBtaPVIG1gvEt-1l3rxYlrMbU,5173
|
|
75
74
|
chainlit/user.py,sha256=8PgRJvv59b7BKTNguObo68gyFoOGNJfVkT3WW-fvhAM,671
|
|
76
75
|
chainlit/user_session.py,sha256=T1nQVN_weELXTrkDIV54YgdrA3zIvJGe1tN-nypunt4,1531
|
|
77
76
|
chainlit/utils.py,sha256=X-WVa0QOwpu8uuzOdGFByvzFieZu7aPpH9LG5UjJ4RI,4002
|
|
78
77
|
chainlit/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
79
|
-
chainlit-1.1.
|
|
80
|
-
chainlit-1.1.
|
|
81
|
-
chainlit-1.1.
|
|
82
|
-
chainlit-1.1.
|
|
78
|
+
chainlit-1.1.400rc0.dist-info/METADATA,sha256=CbfeF2beuhTY71LWFsh_Srsc8uqN52hSxD2x1m28a2w,6294
|
|
79
|
+
chainlit-1.1.400rc0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
80
|
+
chainlit-1.1.400rc0.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
81
|
+
chainlit-1.1.400rc0.dist-info/RECORD,,
|