chainlit 1.1.300__py3-none-any.whl → 1.1.300rc0__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 +1 -3
- chainlit/cli/__init__.py +6 -53
- chainlit/cli/utils.py +24 -0
- chainlit/config.py +0 -4
- chainlit/context.py +0 -9
- chainlit/copilot/dist/index.js +204 -204
- chainlit/data/__init__.py +3 -6
- chainlit/data/sql_alchemy.py +3 -3
- chainlit/element.py +9 -33
- chainlit/emitter.py +7 -8
- chainlit/frontend/dist/assets/{DailyMotion-578b63e6.js → DailyMotion-e54bf0dc.js} +1 -1
- chainlit/frontend/dist/assets/{Facebook-b825e5bb.js → Facebook-a767c817.js} +1 -1
- chainlit/frontend/dist/assets/{FilePlayer-bcba3b4e.js → FilePlayer-5d19f3d1.js} +1 -1
- chainlit/frontend/dist/assets/{Kaltura-fc1c9497.js → Kaltura-93bef413.js} +1 -1
- chainlit/frontend/dist/assets/{Mixcloud-4cfb2724.js → Mixcloud-d5d27c2a.js} +1 -1
- chainlit/frontend/dist/assets/{Mux-aa92055c.js → Mux-ad063035.js} +1 -1
- chainlit/frontend/dist/assets/{Preview-9f55905a.js → Preview-a9a0e47e.js} +1 -1
- chainlit/frontend/dist/assets/{SoundCloud-f991fe03.js → SoundCloud-1698c4da.js} +1 -1
- chainlit/frontend/dist/assets/{Streamable-53128f49.js → Streamable-e5832da9.js} +1 -1
- chainlit/frontend/dist/assets/{Twitch-fce8b9f5.js → Twitch-cd321ef4.js} +1 -1
- chainlit/frontend/dist/assets/{Vidyard-e35c6102.js → Vidyard-8646c638.js} +1 -1
- chainlit/frontend/dist/assets/{Vimeo-fff35f8e.js → Vimeo-0e590e3a.js} +1 -1
- chainlit/frontend/dist/assets/{Wistia-ec07dc64.js → Wistia-76f0c9b0.js} +1 -1
- chainlit/frontend/dist/assets/{YouTube-ad068e2a.js → YouTube-a94756f4.js} +1 -1
- chainlit/frontend/dist/assets/index-51fef15f.js +727 -0
- chainlit/frontend/dist/assets/{index-aaf974a9.css → index-53c62926.css} +1 -1
- chainlit/frontend/dist/assets/{react-plotly-b2c6442b.js → react-plotly-d9ffbf69.js} +1 -1
- chainlit/frontend/dist/index.html +3 -2
- chainlit/message.py +8 -13
- chainlit/oauth_providers.py +0 -118
- chainlit/server.py +57 -182
- chainlit/slack/app.py +2 -2
- chainlit/socket.py +20 -26
- chainlit/step.py +9 -24
- chainlit/translations/en-US.json +1 -1
- chainlit/types.py +17 -7
- chainlit/user.py +1 -9
- chainlit/utils.py +0 -43
- {chainlit-1.1.300.dist-info → chainlit-1.1.300rc0.dist-info}/METADATA +9 -18
- chainlit-1.1.300rc0.dist-info/RECORD +77 -0
- chainlit/data/dynamodb.py +0 -586
- chainlit/frontend/dist/assets/index-d40d41cc.js +0 -727
- chainlit/teams/__init__.py +0 -6
- chainlit/teams/app.py +0 -332
- chainlit-1.1.300.dist-info/RECORD +0 -79
- {chainlit-1.1.300.dist-info → chainlit-1.1.300rc0.dist-info}/WHEEL +0 -0
- {chainlit-1.1.300.dist-info → chainlit-1.1.300rc0.dist-info}/entry_points.txt +0 -0
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] = False,
|
|
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] = False,
|
|
164
164
|
):
|
|
165
165
|
trace_event(f"init {self.__class__.__name__} {type}")
|
|
166
166
|
time.sleep(0.001)
|
|
@@ -295,10 +295,7 @@ class Step:
|
|
|
295
295
|
tasks = [el.send(for_id=self.id) for el in self.elements]
|
|
296
296
|
await asyncio.gather(*tasks)
|
|
297
297
|
|
|
298
|
-
if config.ui.hide_cot and self.
|
|
299
|
-
"user_message",
|
|
300
|
-
"assistant_message",
|
|
301
|
-
]:
|
|
298
|
+
if config.ui.hide_cot and (self.parent_id or "message" not in self.type):
|
|
302
299
|
return True
|
|
303
300
|
|
|
304
301
|
await context.emitter.update_step(step_dict)
|
|
@@ -352,38 +349,26 @@ class Step:
|
|
|
352
349
|
tasks = [el.send(for_id=self.id) for el in self.elements]
|
|
353
350
|
await asyncio.gather(*tasks)
|
|
354
351
|
|
|
355
|
-
if config.ui.hide_cot and self.
|
|
356
|
-
"user_message",
|
|
357
|
-
"assistant_message",
|
|
358
|
-
]:
|
|
352
|
+
if config.ui.hide_cot and (self.parent_id or "message" not in self.type):
|
|
359
353
|
return self
|
|
360
354
|
|
|
361
355
|
await context.emitter.send_step(step_dict)
|
|
362
356
|
|
|
363
357
|
return self
|
|
364
358
|
|
|
365
|
-
async def stream_token(self, token: str, is_sequence=False
|
|
359
|
+
async def stream_token(self, token: str, is_sequence=False):
|
|
366
360
|
"""
|
|
367
361
|
Sends a token to the UI.
|
|
368
362
|
Once all tokens have been streamed, call .send() to end the stream and persist the step if persistence is enabled.
|
|
369
363
|
"""
|
|
370
364
|
if is_sequence:
|
|
371
|
-
|
|
372
|
-
self.input = token
|
|
373
|
-
else:
|
|
374
|
-
self.output = token
|
|
365
|
+
self.output = token
|
|
375
366
|
else:
|
|
376
|
-
|
|
377
|
-
self.input += token
|
|
378
|
-
else:
|
|
379
|
-
self.output += token
|
|
367
|
+
self.output += token
|
|
380
368
|
|
|
381
369
|
assert self.id
|
|
382
370
|
|
|
383
|
-
if config.ui.hide_cot and self.
|
|
384
|
-
"user_message",
|
|
385
|
-
"assistant_message",
|
|
386
|
-
]:
|
|
371
|
+
if config.ui.hide_cot and (self.parent_id or "message" not in self.type):
|
|
387
372
|
return
|
|
388
373
|
|
|
389
374
|
if not self.streaming:
|
|
@@ -392,7 +377,7 @@ class Step:
|
|
|
392
377
|
await context.emitter.stream_start(step_dict)
|
|
393
378
|
else:
|
|
394
379
|
await context.emitter.send_token(
|
|
395
|
-
id=self.id, token=token, is_sequence=is_sequence
|
|
380
|
+
id=self.id, token=token, is_sequence=is_sequence
|
|
396
381
|
)
|
|
397
382
|
|
|
398
383
|
# Handle parameter less decorator
|
chainlit/translations/en-US.json
CHANGED
chainlit/types.py
CHANGED
|
@@ -150,16 +150,11 @@ class FileDict(TypedDict):
|
|
|
150
150
|
type: str
|
|
151
151
|
|
|
152
152
|
|
|
153
|
-
class
|
|
153
|
+
class UIMessagePayload(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
|
|
@@ -198,6 +193,21 @@ class AskActionResponse(TypedDict):
|
|
|
198
193
|
collapsed: bool
|
|
199
194
|
|
|
200
195
|
|
|
196
|
+
class GenerationRequest(BaseModel):
|
|
197
|
+
chatGeneration: Optional[ChatGeneration] = None
|
|
198
|
+
completionGeneration: Optional[CompletionGeneration] = None
|
|
199
|
+
userEnv: Dict[str, str]
|
|
200
|
+
|
|
201
|
+
@property
|
|
202
|
+
def generation(self):
|
|
203
|
+
if self.chatGeneration:
|
|
204
|
+
return self.chatGeneration
|
|
205
|
+
return self.completionGeneration
|
|
206
|
+
|
|
207
|
+
def is_chat(self):
|
|
208
|
+
return self.chatGeneration is not None
|
|
209
|
+
|
|
210
|
+
|
|
201
211
|
class DeleteThreadRequest(BaseModel):
|
|
202
212
|
threadId: str
|
|
203
213
|
|
|
@@ -249,8 +259,8 @@ class FeedbackDict(TypedDict):
|
|
|
249
259
|
@dataclass
|
|
250
260
|
class Feedback:
|
|
251
261
|
forId: str
|
|
262
|
+
threadId: Optional[str]
|
|
252
263
|
value: Literal[0, 1]
|
|
253
|
-
threadId: Optional[str] = None
|
|
254
264
|
id: Optional[str] = None
|
|
255
265
|
comment: Optional[str] = None
|
|
256
266
|
|
chainlit/user.py
CHANGED
|
@@ -4,15 +4,7 @@ from dataclasses_json import DataClassJsonMixin
|
|
|
4
4
|
from pydantic.dataclasses import Field, dataclass
|
|
5
5
|
|
|
6
6
|
Provider = Literal[
|
|
7
|
-
"credentials",
|
|
8
|
-
"header",
|
|
9
|
-
"github",
|
|
10
|
-
"google",
|
|
11
|
-
"azure-ad",
|
|
12
|
-
"azure-ad-hybrid",
|
|
13
|
-
"okta",
|
|
14
|
-
"auth0",
|
|
15
|
-
"descope",
|
|
7
|
+
"credentials", "header", "github", "google", "azure-ad", "okta", "auth0", "descope"
|
|
16
8
|
]
|
|
17
9
|
|
|
18
10
|
|
chainlit/utils.py
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import functools
|
|
2
2
|
import importlib
|
|
3
3
|
import inspect
|
|
4
|
-
import os
|
|
5
4
|
from asyncio import CancelledError
|
|
6
5
|
from typing import Callable
|
|
7
6
|
|
|
8
|
-
import click
|
|
9
|
-
from chainlit.auth import ensure_jwt_secret
|
|
10
7
|
from chainlit.context import context
|
|
11
8
|
from chainlit.logger import logger
|
|
12
9
|
from chainlit.message import ErrorMessage
|
|
13
|
-
from fastapi import FastAPI
|
|
14
10
|
from packaging import version
|
|
15
11
|
|
|
16
12
|
|
|
@@ -91,42 +87,3 @@ def check_module_version(name, required_version):
|
|
|
91
87
|
except ModuleNotFoundError:
|
|
92
88
|
return False
|
|
93
89
|
return version.parse(module.__version__) >= version.parse(required_version)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def check_file(target: str):
|
|
97
|
-
# Define accepted file extensions for Chainlit
|
|
98
|
-
ACCEPTED_FILE_EXTENSIONS = ("py", "py3")
|
|
99
|
-
|
|
100
|
-
_, extension = os.path.splitext(target)
|
|
101
|
-
|
|
102
|
-
# Check file extension
|
|
103
|
-
if extension[1:] not in ACCEPTED_FILE_EXTENSIONS:
|
|
104
|
-
if extension[1:] == "":
|
|
105
|
-
raise click.BadArgumentUsage(
|
|
106
|
-
"Chainlit requires raw Python (.py) files, but the provided file has no extension."
|
|
107
|
-
)
|
|
108
|
-
else:
|
|
109
|
-
raise click.BadArgumentUsage(
|
|
110
|
-
f"Chainlit requires raw Python (.py) files, not {extension}."
|
|
111
|
-
)
|
|
112
|
-
|
|
113
|
-
if not os.path.exists(target):
|
|
114
|
-
raise click.BadParameter(f"File does not exist: {target}")
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
def mount_chainlit(app: FastAPI, target: str, path="/chainlit"):
|
|
118
|
-
os.environ["CHAINLIT_ROOT_PATH"] = path
|
|
119
|
-
os.environ["CHAINLIT_SUBMOUNT"] = "true"
|
|
120
|
-
from chainlit.config import config, load_module
|
|
121
|
-
from chainlit.server import combined_asgi_app as chainlit_app
|
|
122
|
-
|
|
123
|
-
config.run.root_path = path
|
|
124
|
-
|
|
125
|
-
check_file(target)
|
|
126
|
-
# Load the module provided by the user
|
|
127
|
-
config.run.module_name = target
|
|
128
|
-
load_module(config.run.module_name)
|
|
129
|
-
|
|
130
|
-
ensure_jwt_secret()
|
|
131
|
-
|
|
132
|
-
app.mount("/", chainlit_app)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chainlit
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.300rc0
|
|
4
4
|
Summary: Build Conversational AI.
|
|
5
5
|
Home-page: https://github.com/Chainlit/chainlit
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -18,19 +18,17 @@ Requires-Dist: asyncer (>=0.0.2,<0.0.3)
|
|
|
18
18
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
19
19
|
Requires-Dist: dataclasses_json (>=0.5.7,<0.6.0)
|
|
20
20
|
Requires-Dist: fastapi (>=0.110.1,<0.111.0)
|
|
21
|
+
Requires-Dist: fastapi-socketio (>=0.0.10,<0.0.11)
|
|
21
22
|
Requires-Dist: filetype (>=1.2.0,<2.0.0)
|
|
22
23
|
Requires-Dist: httpx (>=0.23.0)
|
|
23
24
|
Requires-Dist: lazify (>=0.4.0,<0.5.0)
|
|
24
|
-
Requires-Dist: literalai (==0.0.
|
|
25
|
+
Requires-Dist: literalai (==0.0.602)
|
|
25
26
|
Requires-Dist: nest-asyncio (>=1.5.6,<2.0.0)
|
|
26
|
-
Requires-Dist: numpy (>=1.24.4,<2.0.0) ; python_version < "3.9"
|
|
27
|
-
Requires-Dist: numpy (>=1.26,<2.0) ; python_version >= "3.9"
|
|
28
27
|
Requires-Dist: packaging (>=23.1,<24.0)
|
|
29
28
|
Requires-Dist: pydantic (>=1,<3)
|
|
30
29
|
Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
|
|
31
30
|
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
|
32
31
|
Requires-Dist: python-multipart (>=0.0.9,<0.0.10)
|
|
33
|
-
Requires-Dist: python-socketio (>=5.11.0,<6.0.0)
|
|
34
32
|
Requires-Dist: starlette (>=0.37.2,<0.38.0)
|
|
35
33
|
Requires-Dist: syncer (>=2.0.3,<3.0.0)
|
|
36
34
|
Requires-Dist: tomli (>=2.0.1,<3.0.0)
|
|
@@ -44,8 +42,6 @@ Description-Content-Type: text/markdown
|
|
|
44
42
|
|
|
45
43
|
[](https://discord.gg/k73SQ3FyUh)
|
|
46
44
|
[](https://twitter.com/chainlit_io)
|
|
47
|
-

|
|
48
|
-
[](https://github.com/chainlit/chainlit/graphs/contributors)
|
|
49
45
|
[](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml)
|
|
50
46
|
|
|
51
47
|
**Build production-ready Conversational AI applications in minutes, not weeks ⚡️**
|
|
@@ -64,9 +60,7 @@ Full documentation is available [here](https://docs.chainlit.io). You can ask Ch
|
|
|
64
60
|
> Contact us [here](https://forms.gle/BX3UNBLmTF75KgZVA) for **Enterprise Support**.
|
|
65
61
|
> 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.
|
|
66
62
|
|
|
67
|
-
|
|
68
|
-
<img src="https://github.com/Chainlit/chainlit/assets/13104895/0c2cc7a9-766c-41d3-aae2-117a2d0eb8ed" width="80%" />
|
|
69
|
-
</p>
|
|
63
|
+
https://github.com/Chainlit/chainlit/assets/13104895/8882af90-fdfa-4b24-8200-1ee96c6c7490
|
|
70
64
|
|
|
71
65
|
## Installation
|
|
72
66
|
|
|
@@ -89,10 +83,8 @@ Create a new file `demo.py` with the following code:
|
|
|
89
83
|
import chainlit as cl
|
|
90
84
|
|
|
91
85
|
|
|
92
|
-
@cl.step
|
|
93
|
-
|
|
94
|
-
# Fake tool
|
|
95
|
-
await cl.sleep(2)
|
|
86
|
+
@cl.step
|
|
87
|
+
def tool():
|
|
96
88
|
return "Response from the tool!"
|
|
97
89
|
|
|
98
90
|
|
|
@@ -109,12 +101,11 @@ async def main(message: cl.Message):
|
|
|
109
101
|
None.
|
|
110
102
|
"""
|
|
111
103
|
|
|
112
|
-
final_answer = await cl.Message(content="").send()
|
|
113
|
-
|
|
114
104
|
# Call the tool
|
|
115
|
-
|
|
105
|
+
tool()
|
|
116
106
|
|
|
117
|
-
|
|
107
|
+
# Send the final answer.
|
|
108
|
+
await cl.Message(content="This is the final answer").send()
|
|
118
109
|
```
|
|
119
110
|
|
|
120
111
|
Now run it!
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
chainlit/__init__.py,sha256=NQENgJ2GQB4h2IzRtNoO3EdPnk-dI3WEYymenFpmsA8,10995
|
|
2
|
+
chainlit/__main__.py,sha256=7Vg3w3T3qDuz4KDu5lQhLH6lQ3cYdume7gHH7Z1V97U,87
|
|
3
|
+
chainlit/action.py,sha256=k-GsblVHI4DnDWFyF-RZgq3KfdfAFICFh2OBeU4w8N8,1410
|
|
4
|
+
chainlit/auth.py,sha256=lLHePwmwKzX0LiWqpTAtKTdSecrDLqCMSY9Yw4c-TD8,2681
|
|
5
|
+
chainlit/cache.py,sha256=Bv3dT4eHhE6Fq3c6Do0ZTpiyoXgXYewdxTgpYghEd9g,1361
|
|
6
|
+
chainlit/chat_settings.py,sha256=2ByenmwS8O6jQjDVJjhhbLrBPGA5aY2F7R3VvQQxXPk,877
|
|
7
|
+
chainlit/cli/__init__.py,sha256=JEB3Z3VWpzPgcfdSOQ6Z-L7dHdl7A1y47KUZP8H08GQ,4951
|
|
8
|
+
chainlit/cli/utils.py,sha256=mE2d9oOk-B2b9ZvDV1zENoDWxjfMriGP7bVwEFduZP4,717
|
|
9
|
+
chainlit/config.py,sha256=b9Zaab386X6S0k5F9e-epL-AohRvIQZ9RzicyCPAk3s,16581
|
|
10
|
+
chainlit/context.py,sha256=kBnJiKKNhft1nrXFLQnAW6M-_mzMpYqDEFAG5-lrHyo,2813
|
|
11
|
+
chainlit/copilot/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
12
|
+
chainlit/copilot/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
13
|
+
chainlit/copilot/dist/index.js,sha256=Xu_6ZFSc1Pj06-f8l0S66VACGMWdQCLTZyIiw1jVQFo,6749304
|
|
14
|
+
chainlit/data/__init__.py,sha256=E0NmYlxi0v4V17zKI2btAMKHWyK8kXamVMEQF0m7TPU,16984
|
|
15
|
+
chainlit/data/acl.py,sha256=5EwZuKVcZediw77L661MohGce3JzGIaYmw6NutmMTw0,578
|
|
16
|
+
chainlit/data/sql_alchemy.py,sha256=lY_5fg7LY0zcBZfsfxHYIhC5taM1MCatH9-CLgpg-Vk,26821
|
|
17
|
+
chainlit/data/storage_clients.py,sha256=D9KY1XKDjZh2uuh01ECxeoEtjw-JlrCR-WCuOuePVQI,3007
|
|
18
|
+
chainlit/discord/__init__.py,sha256=kZ_AAMaCToqO-1FdeQ8_IHS2pqNT0QJ-yyd8bCMaHHs,198
|
|
19
|
+
chainlit/discord/app.py,sha256=KvBS-bL89tKzzz2-lqCQVaI2hb4qYTyhl_TzCdhMfHQ,10540
|
|
20
|
+
chainlit/element.py,sha256=qhXq9b6NtvKePHNpyft9QzYS-O2h7zlhsRDCjOmsAhg,10549
|
|
21
|
+
chainlit/emitter.py,sha256=54MPYoYHkOCKJvT30Vvg9mWYzWunGN9I3cFaqIoQ8oU,13037
|
|
22
|
+
chainlit/frontend/dist/assets/DailyMotion-e54bf0dc.js,sha256=24Xl96SqTSvpoC1L5tkqfw-a685rGVMY2VYJY1ne1-w,2961
|
|
23
|
+
chainlit/frontend/dist/assets/Facebook-a767c817.js,sha256=C5yLZLECrqjwxO4FUn2WR2HB_QnM6giru0nOkwRX8M8,3216
|
|
24
|
+
chainlit/frontend/dist/assets/FilePlayer-5d19f3d1.js,sha256=SfpQT7Ukmcufcj0Fob1neCdH9LIo532sbcoWGibAkPk,9041
|
|
25
|
+
chainlit/frontend/dist/assets/Kaltura-93bef413.js,sha256=yiX6xfZL_1VJINw2Qz2-JU8gDavSeY_HqialOkBbyB0,2790
|
|
26
|
+
chainlit/frontend/dist/assets/Mixcloud-d5d27c2a.js,sha256=Jo8sSYAGGp8tqZ4FVvR1Cwg80IygEgMvQXnERgS0m9c,2638
|
|
27
|
+
chainlit/frontend/dist/assets/Mux-ad063035.js,sha256=eaUjBR3dX2FtoTS50IW2ThBThfQ3jJMoAyU-AGBdP5E,5360
|
|
28
|
+
chainlit/frontend/dist/assets/Preview-a9a0e47e.js,sha256=bnp9f1WzhjkOifiKEUvPDty798I5hx2KTRlr2eH5B6M,3011
|
|
29
|
+
chainlit/frontend/dist/assets/SoundCloud-1698c4da.js,sha256=Vq_LSG7FvnhfSQVf4rvDC8yqvD788m9YuVKuVMzDteA,2923
|
|
30
|
+
chainlit/frontend/dist/assets/Streamable-e5832da9.js,sha256=U8iKcleacnxzOiSgI1PUpUDczLoX9S1LlJXMHhKJxxY,2935
|
|
31
|
+
chainlit/frontend/dist/assets/Twitch-cd321ef4.js,sha256=AVTGn9uXl3LhVgjZcGpabx7qJonv73uL0VQKxa4XGv4,3083
|
|
32
|
+
chainlit/frontend/dist/assets/Vidyard-8646c638.js,sha256=xhNjHVX_nTvYUae5v-Cp0-wPXIEA58LCJB8T7inA7CM,2857
|
|
33
|
+
chainlit/frontend/dist/assets/Vimeo-0e590e3a.js,sha256=eIlhe6MvWSMPZw2lk3609AO8bCxcSPDtsqobdvr28Kw,3627
|
|
34
|
+
chainlit/frontend/dist/assets/Wistia-76f0c9b0.js,sha256=BlCGykDsVA9AoyWY78coEoMaE-ckrgiaWBjYllGgKX4,3514
|
|
35
|
+
chainlit/frontend/dist/assets/YouTube-a94756f4.js,sha256=yw8J-DKrk4XkbUKIfqPWYVW6PklBjknEzAjdoVQbX5U,4448
|
|
36
|
+
chainlit/frontend/dist/assets/index-51fef15f.js,sha256=wEpCSTpE3OQDf03qrMXy8sEJLJyuiXZHABTw4FCM4YY,2751506
|
|
37
|
+
chainlit/frontend/dist/assets/index-53c62926.css,sha256=U8YpJoRn8y4ZXI1mRdKl9fIDXCS9Fs9N7gaugq9P9jc,2640
|
|
38
|
+
chainlit/frontend/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
39
|
+
chainlit/frontend/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
40
|
+
chainlit/frontend/dist/assets/react-plotly-d9ffbf69.js,sha256=uAPeLExciHnNG9NeJ4dLDgaifieMV_ZCzl5VhdYF8Lw,3739251
|
|
41
|
+
chainlit/frontend/dist/favicon.svg,sha256=0Cy8x28obT5eWW3nxZRhsEvu6_zMqrqbg0y6hT3D0Q0,6455
|
|
42
|
+
chainlit/frontend/dist/index.html,sha256=63ECKq4CjbL_YMB4exOG5H_P9G8ynOTUmJzSJYg0hlI,1005
|
|
43
|
+
chainlit/haystack/__init__.py,sha256=uZ77YiPy-qleSTi3dQCDO9HE6S6F6GpJWmh7jO4cxXA,217
|
|
44
|
+
chainlit/haystack/callbacks.py,sha256=tItLc6OmskPeDEJH2Qjtg7KgAgIy1TuYQYHTZm9cr3U,5209
|
|
45
|
+
chainlit/hello.py,sha256=LwENQWo5s5r8nNDn4iKSV77vX60Ky5r_qGjQhyi7qlY,416
|
|
46
|
+
chainlit/input_widget.py,sha256=KmOn1nPTBvnld3iIBHR0Vih0KsCxVnTbo2t_xBNANzo,4949
|
|
47
|
+
chainlit/langchain/__init__.py,sha256=zErMw0_3ufSGeF9ye7X0ZX3wDat4mTOx97T40ePDO2g,217
|
|
48
|
+
chainlit/langchain/callbacks.py,sha256=MHl_m6FYZmCzn0e2KOlZpd6ld0rSP1LzuCKs4Eh_N_8,20517
|
|
49
|
+
chainlit/langflow/__init__.py,sha256=wxhxdsl1yxdsRyNTgZticxFF_8VFtJJ4OdIy3tnEIyM,817
|
|
50
|
+
chainlit/llama_index/__init__.py,sha256=weRoIWCaRBGvA1LczCEfsqhWsltQSVlhtRnTovtdo8w,227
|
|
51
|
+
chainlit/llama_index/callbacks.py,sha256=THFmwotSF_ibqFuaQgxGvEjgKmmzoGJKNlVI75SI2ig,7267
|
|
52
|
+
chainlit/logger.py,sha256=wTwRSZsLfXwWy6U4351IgWAm4KCMThgxm9EZpjGUEr4,373
|
|
53
|
+
chainlit/markdown.py,sha256=VUpqW7MqgjiPIQYHU4funwqC4GmHZBu_TGZTjTI4B0k,2025
|
|
54
|
+
chainlit/message.py,sha256=dheL_MiBcdc4wB9yJBRnOBZavcNRYVgjhWllSj3c1c4,18012
|
|
55
|
+
chainlit/oauth_providers.py,sha256=WiKUFpNp0RRN5Vq6LHCR9V-9td_1YEn2yD8iGu8atvY,17459
|
|
56
|
+
chainlit/openai/__init__.py,sha256=DJP_ptclLUM5Zylr4RO1Vk0lCufo3yDqXyH5J9izYS8,1814
|
|
57
|
+
chainlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
chainlit/secret.py,sha256=cQvIFGTQ7r2heC8EOGdgifSZZYqslh-qQxhUhKhD8vU,295
|
|
59
|
+
chainlit/server.py,sha256=dpgTSFJJ33Judgn2MIfg0F1dTz6gFCvp3iazhQ9d8mQ,24595
|
|
60
|
+
chainlit/session.py,sha256=SOX2zFct3apiSNcIzCDWgDRsUFgUG_6hewqWU8gfIZE,9694
|
|
61
|
+
chainlit/slack/__init__.py,sha256=Q41ztJHeVmpoXVgVqAcwGOufQp_bjf7dDT7eEXDdhPI,207
|
|
62
|
+
chainlit/slack/app.py,sha256=hGqd6m3BI47dLUyhF2-Q544r3Uib72Iz4GaBiwxchno,11619
|
|
63
|
+
chainlit/socket.py,sha256=mJiKs7QTsahYZAdvTaJBCLO90wtLolN61iSviIRdErY,11664
|
|
64
|
+
chainlit/step.py,sha256=UKLPLq4UsB-vJfgIuLelno2KbmUKHXfvi0k8KB_Eplc,13882
|
|
65
|
+
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
66
|
+
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
67
|
+
chainlit/translations/en-US.json,sha256=Co2qy0iVqddjH_C4fH8s_pzHkLdwKWW-F5eYQPXWX50,7740
|
|
68
|
+
chainlit/translations.py,sha256=WG_r7HzxBYns-zk9tVvoGdoofv71okTZx8k1RlcoTIg,2034
|
|
69
|
+
chainlit/types.py,sha256=nnPI5yKJ7WRLg-bZ0Cx33w8VKsEX_bMOG74B_vB5k5I,5633
|
|
70
|
+
chainlit/user.py,sha256=Cw4uGz0ffivWFszv8W__EHwkvTHQ3Lj9hqpRCPxFujo,619
|
|
71
|
+
chainlit/user_session.py,sha256=G1amgs1_h2tVn4mtAXZmunm9nlBHQ_rCYvJQh3nsVwQ,1645
|
|
72
|
+
chainlit/utils.py,sha256=jdDcwOCUqpFRvWd_NWLaEUHB3vRIAU8rb013aWoqXOE,2642
|
|
73
|
+
chainlit/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
74
|
+
chainlit-1.1.300rc0.dist-info/METADATA,sha256=80sz6Tmyx6Iw3B45nlgTiIKWH6buYuOBCKnQeXG697Q,5854
|
|
75
|
+
chainlit-1.1.300rc0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
76
|
+
chainlit-1.1.300rc0.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
77
|
+
chainlit-1.1.300rc0.dist-info/RECORD,,
|