chainlit 1.0.400__py3-none-any.whl → 2.0.3__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 +98 -279
- chainlit/_utils.py +8 -0
- chainlit/action.py +12 -10
- chainlit/{auth.py → auth/__init__.py} +28 -36
- chainlit/auth/cookie.py +122 -0
- chainlit/auth/jwt.py +39 -0
- chainlit/cache.py +4 -6
- chainlit/callbacks.py +362 -0
- chainlit/chat_context.py +64 -0
- chainlit/chat_settings.py +3 -1
- chainlit/cli/__init__.py +77 -8
- chainlit/config.py +181 -101
- chainlit/context.py +42 -13
- chainlit/copilot/dist/index.js +8750 -903
- chainlit/data/__init__.py +101 -416
- chainlit/data/acl.py +6 -2
- chainlit/data/base.py +107 -0
- chainlit/data/chainlit_data_layer.py +608 -0
- chainlit/data/dynamodb.py +590 -0
- chainlit/data/literalai.py +500 -0
- chainlit/data/sql_alchemy.py +721 -0
- chainlit/data/storage_clients/__init__.py +0 -0
- chainlit/data/storage_clients/azure.py +81 -0
- chainlit/data/storage_clients/azure_blob.py +89 -0
- chainlit/data/storage_clients/base.py +26 -0
- chainlit/data/storage_clients/gcs.py +88 -0
- chainlit/data/storage_clients/s3.py +75 -0
- chainlit/data/utils.py +29 -0
- chainlit/discord/__init__.py +6 -0
- chainlit/discord/app.py +354 -0
- chainlit/element.py +91 -33
- chainlit/emitter.py +80 -29
- chainlit/frontend/dist/assets/DailyMotion-C_XC7xJI.js +1 -0
- chainlit/frontend/dist/assets/Dataframe-Cs4l4hA1.js +22 -0
- chainlit/frontend/dist/assets/Facebook-CUeCH7hk.js +1 -0
- chainlit/frontend/dist/assets/FilePlayer-CB-fYkx8.js +1 -0
- chainlit/frontend/dist/assets/Kaltura-YX6qaq72.js +1 -0
- chainlit/frontend/dist/assets/Mixcloud-DGV0ldjP.js +1 -0
- chainlit/frontend/dist/assets/Mux-CmRss5oc.js +1 -0
- chainlit/frontend/dist/assets/Preview-DBVJn7-H.js +1 -0
- chainlit/frontend/dist/assets/SoundCloud-qLUb18oY.js +1 -0
- chainlit/frontend/dist/assets/Streamable-BvYP7bFp.js +1 -0
- chainlit/frontend/dist/assets/Twitch-CTHt-sGZ.js +1 -0
- chainlit/frontend/dist/assets/Vidyard-B-0mCJbm.js +1 -0
- chainlit/frontend/dist/assets/Vimeo-Dnp7ri8q.js +1 -0
- chainlit/frontend/dist/assets/Wistia-DW0x_UBn.js +1 -0
- chainlit/frontend/dist/assets/YouTube--98FipvA.js +1 -0
- chainlit/frontend/dist/assets/index-D71nZ46o.js +8665 -0
- chainlit/frontend/dist/assets/index-g8LTJwwr.css +1 -0
- chainlit/frontend/dist/assets/react-plotly-Cn_BQTQw.js +3484 -0
- chainlit/frontend/dist/index.html +2 -4
- chainlit/haystack/callbacks.py +4 -7
- chainlit/input_widget.py +8 -4
- chainlit/langchain/callbacks.py +107 -72
- chainlit/langflow/__init__.py +1 -0
- chainlit/llama_index/__init__.py +2 -2
- chainlit/llama_index/callbacks.py +67 -42
- chainlit/markdown.py +22 -6
- chainlit/message.py +54 -56
- chainlit/mistralai/__init__.py +50 -0
- chainlit/oauth_providers.py +266 -8
- chainlit/openai/__init__.py +10 -18
- chainlit/secret.py +1 -1
- chainlit/server.py +789 -228
- chainlit/session.py +108 -90
- chainlit/slack/__init__.py +6 -0
- chainlit/slack/app.py +397 -0
- chainlit/socket.py +199 -116
- chainlit/step.py +141 -89
- chainlit/sync.py +2 -1
- chainlit/teams/__init__.py +6 -0
- chainlit/teams/app.py +338 -0
- chainlit/translations/bn.json +235 -0
- chainlit/translations/en-US.json +83 -4
- chainlit/translations/gu.json +235 -0
- chainlit/translations/he-IL.json +235 -0
- chainlit/translations/hi.json +235 -0
- chainlit/translations/kn.json +235 -0
- chainlit/translations/ml.json +235 -0
- chainlit/translations/mr.json +235 -0
- chainlit/translations/nl-NL.json +233 -0
- chainlit/translations/ta.json +235 -0
- chainlit/translations/te.json +235 -0
- chainlit/translations/zh-CN.json +233 -0
- chainlit/translations.py +60 -0
- chainlit/types.py +133 -28
- chainlit/user.py +14 -3
- chainlit/user_session.py +6 -3
- chainlit/utils.py +52 -5
- chainlit/version.py +3 -2
- {chainlit-1.0.400.dist-info → chainlit-2.0.3.dist-info}/METADATA +48 -50
- chainlit-2.0.3.dist-info/RECORD +106 -0
- chainlit/cli/utils.py +0 -24
- chainlit/frontend/dist/assets/index-9711593e.js +0 -723
- chainlit/frontend/dist/assets/index-d088547c.css +0 -1
- chainlit/frontend/dist/assets/react-plotly-d8762cc2.js +0 -3602
- chainlit/playground/__init__.py +0 -2
- chainlit/playground/config.py +0 -40
- chainlit/playground/provider.py +0 -108
- chainlit/playground/providers/__init__.py +0 -13
- chainlit/playground/providers/anthropic.py +0 -118
- chainlit/playground/providers/huggingface.py +0 -75
- chainlit/playground/providers/langchain.py +0 -89
- chainlit/playground/providers/openai.py +0 -408
- chainlit/playground/providers/vertexai.py +0 -171
- chainlit/translations/pt-BR.json +0 -155
- chainlit-1.0.400.dist-info/RECORD +0 -66
- /chainlit/copilot/dist/assets/{logo_dark-2a3cf740.svg → logo_dark-IkGJ_IwC.svg} +0 -0
- /chainlit/copilot/dist/assets/{logo_light-b078e7bc.svg → logo_light-Bb_IPh6r.svg} +0 -0
- /chainlit/frontend/dist/assets/{logo_dark-2a3cf740.svg → logo_dark-IkGJ_IwC.svg} +0 -0
- /chainlit/frontend/dist/assets/{logo_light-b078e7bc.svg → logo_light-Bb_IPh6r.svg} +0 -0
- {chainlit-1.0.400.dist-info → chainlit-2.0.3.dist-info}/WHEEL +0 -0
- {chainlit-1.0.400.dist-info → chainlit-2.0.3.dist-info}/entry_points.txt +0 -0
chainlit/translations/pt-BR.json
DELETED
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"components": {
|
|
3
|
-
"atoms": {
|
|
4
|
-
"buttons": {
|
|
5
|
-
"userButton": {
|
|
6
|
-
"menu": {
|
|
7
|
-
"settings": "Configurações",
|
|
8
|
-
"settingsKey": "S",
|
|
9
|
-
"APIKeys": "Chaves de API",
|
|
10
|
-
"logout": "Sair"
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"molecules": {
|
|
16
|
-
"newChatButton": {
|
|
17
|
-
"newChat": "Nova Conversa"
|
|
18
|
-
},
|
|
19
|
-
"tasklist": {
|
|
20
|
-
"TaskList": {
|
|
21
|
-
"title": "🗒️ Lista de Tarefas",
|
|
22
|
-
"loading": "Carregando...",
|
|
23
|
-
"error": "Ocorreu um erro"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"attachments": {
|
|
27
|
-
"cancelUpload": "Cancelar envio",
|
|
28
|
-
"removeAttachment": "Remover anexo"
|
|
29
|
-
},
|
|
30
|
-
"newChatDialog": {
|
|
31
|
-
"createNewChat": "Criar novo chat?",
|
|
32
|
-
"clearChat": "Isso limpará as mensagens atuais e iniciará uma nova conversa.",
|
|
33
|
-
"cancel": "Cancelar",
|
|
34
|
-
"confirm": "Confirmar"
|
|
35
|
-
},
|
|
36
|
-
"settingsModal": {
|
|
37
|
-
"expandMessages": "Expandir Mensagens",
|
|
38
|
-
"hideChainOfThought": "Esconder Sequência de Pensamento",
|
|
39
|
-
"darkMode": "Modo Escuro"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"organisms": {
|
|
43
|
-
"chat": {
|
|
44
|
-
"history": {
|
|
45
|
-
"index": {
|
|
46
|
-
"lastInputs": "Últimas Entradas",
|
|
47
|
-
"noInputs": "Vazio...",
|
|
48
|
-
"loading": "Carregando..."
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"inputBox": {
|
|
52
|
-
"input": {
|
|
53
|
-
"placeholder": "Digite sua mensagem aqui..."
|
|
54
|
-
},
|
|
55
|
-
"speechButton": {
|
|
56
|
-
"start": "Iniciar gravação",
|
|
57
|
-
"stop": "Parar gravação"
|
|
58
|
-
},
|
|
59
|
-
"SubmitButton": {
|
|
60
|
-
"sendMessage": "Enviar mensagem",
|
|
61
|
-
"stopTask": "Parar Tarefa"
|
|
62
|
-
},
|
|
63
|
-
"UploadButton": {
|
|
64
|
-
"attachFiles": "Anexar arquivos"
|
|
65
|
-
},
|
|
66
|
-
"waterMark": {
|
|
67
|
-
"text": "Construído com"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"Messages": {
|
|
71
|
-
"index": {
|
|
72
|
-
"running": "Executando",
|
|
73
|
-
"executedSuccessfully": "executado com sucesso",
|
|
74
|
-
"failed": "falhou",
|
|
75
|
-
"feedbackUpdated": "Feedback atualizado",
|
|
76
|
-
"updating": "Atualizando"
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
"dropScreen": {
|
|
80
|
-
"dropYourFilesHere": "Solte seus arquivos aqui"
|
|
81
|
-
},
|
|
82
|
-
"index": {
|
|
83
|
-
"failedToUpload": "Falha ao enviar",
|
|
84
|
-
"cancelledUploadOf": "Envio cancelado de",
|
|
85
|
-
"couldNotReachServer": "Não foi possível conectar ao servidor",
|
|
86
|
-
"continuingChat": "Continuando o chat anterior"
|
|
87
|
-
},
|
|
88
|
-
"settings": {
|
|
89
|
-
"settingsPanel": "Painel de Configurações",
|
|
90
|
-
"reset": "Redefinir",
|
|
91
|
-
"cancel": "Cancelar",
|
|
92
|
-
"confirm": "Confirmar"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"threadHistory": {
|
|
96
|
-
"sidebar": {
|
|
97
|
-
"filters": {
|
|
98
|
-
"FeedbackSelect": {
|
|
99
|
-
"feedbackAll": "Feedback: Todos",
|
|
100
|
-
"feedbackPositive": "Feedback: Positivo",
|
|
101
|
-
"feedbackNegative": "Feedback: Negativo"
|
|
102
|
-
},
|
|
103
|
-
"SearchBar": {
|
|
104
|
-
"search": "Buscar"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"DeleteThreadButton": {
|
|
108
|
-
"confirmMessage": "Isso deletará a conversa, assim como suas mensagens e elementos.",
|
|
109
|
-
"cancel": "Cancelar",
|
|
110
|
-
"confirm": "Confirmar",
|
|
111
|
-
"deletingChat": "Deletando conversa",
|
|
112
|
-
"chatDeleted": "Conversa deletada"
|
|
113
|
-
},
|
|
114
|
-
"index": {
|
|
115
|
-
"pastChats": "Conversas Anteriores"
|
|
116
|
-
},
|
|
117
|
-
"ThreadList": {
|
|
118
|
-
"empty": "Vazio..."
|
|
119
|
-
},
|
|
120
|
-
"TriggerButton": {
|
|
121
|
-
"closeSidebar": "Fechar barra lateral",
|
|
122
|
-
"openSidebar": "Abrir barra lateral"
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"Thread": {
|
|
126
|
-
"backToChat": "Voltar para a conversa",
|
|
127
|
-
"chatCreatedOn": "Esta conversa foi criada em"
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"header": {
|
|
131
|
-
"chat": "Conversa",
|
|
132
|
-
"readme": "Leia-me"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"hooks": {
|
|
136
|
-
"useLLMProviders": {
|
|
137
|
-
"failedToFetchProviders": "Falha ao buscar provedores:"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
"pages": {
|
|
141
|
-
"Design": {},
|
|
142
|
-
"Env": {
|
|
143
|
-
"savedSuccessfully": "Salvo com sucesso",
|
|
144
|
-
"requiredApiKeys": "Chaves de API necessárias",
|
|
145
|
-
"requiredApiKeysInfo": "Para usar este aplicativo, as seguintes chaves de API são necessárias. As chaves são armazenadas localmente em seu dispositivo."
|
|
146
|
-
},
|
|
147
|
-
"Page": {
|
|
148
|
-
"notPartOfProject": "Você não faz parte deste projeto."
|
|
149
|
-
},
|
|
150
|
-
"ResumeButton": {
|
|
151
|
-
"resumeChat": "Continuar Conversa"
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
chainlit/__init__.py,sha256=pACOh7jtqeZzTSiV3XtHXNP9JImzjanEpqpcZvImeG0,9667
|
|
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=aMynTbqbJEvxkoIzDjsdKL6wJ0HFgLfVrbxFkwqp1FU,4733
|
|
8
|
-
chainlit/cli/utils.py,sha256=mE2d9oOk-B2b9ZvDV1zENoDWxjfMriGP7bVwEFduZP4,717
|
|
9
|
-
chainlit/config.py,sha256=hTy3JaWgmk8eraVgxVFgvGE29NOOkYQYum6hzey8v9E,12881
|
|
10
|
-
chainlit/context.py,sha256=CecWdRuRCTr4jfXlOiU3Mh41j3B-p40c1jC7mhToVzk,2476
|
|
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=LpDTMaqn4ucf2wnaQDn2F4mJ-lPl2OnqaXbNiqgFTAQ,7174819
|
|
14
|
-
chainlit/data/__init__.py,sha256=dTtCuPz7Y56q5-n7v4IzIU4EkkemiEUChxMIl8h8mqk,14683
|
|
15
|
-
chainlit/data/acl.py,sha256=hx7Othkx12EitonyZD4iFIRVHwxBmBY2TKdwjPuZMSo,461
|
|
16
|
-
chainlit/element.py,sha256=K5-yxiO2E0ZMRARKcXCNPnxsDKeLcBsXiZ5L-CGNp0A,10162
|
|
17
|
-
chainlit/emitter.py,sha256=QOB4HNCOwL5x1EVBwuKceiGDtcml8Nr9TsvpSFCntoU,12178
|
|
18
|
-
chainlit/frontend/dist/assets/index-9711593e.js,sha256=LX03YcrVpCc-pMoW6K87XH3gghJz380ulVfsB8iaoHg,3250320
|
|
19
|
-
chainlit/frontend/dist/assets/index-d088547c.css,sha256=0IhUfCm_IY1kjvlTR2edW1qKXAFDya3LZ6mnZnP6ovk,6605
|
|
20
|
-
chainlit/frontend/dist/assets/logo_dark-2a3cf740.svg,sha256=Kjz3QMh-oh-ag4YatjU0YCPqGF7F8nHh8VUQoJIs01E,8887
|
|
21
|
-
chainlit/frontend/dist/assets/logo_light-b078e7bc.svg,sha256=sHjnvEq1rfqh3bcexJNYUY7WEDdTQZq3aKZYpi4w4ck,8889
|
|
22
|
-
chainlit/frontend/dist/assets/react-plotly-d8762cc2.js,sha256=9cWjlf_pouDsP2Bgwna7C94cuCvD_zwr4zq29E-hedk,3739251
|
|
23
|
-
chainlit/frontend/dist/favicon.svg,sha256=0Cy8x28obT5eWW3nxZRhsEvu6_zMqrqbg0y6hT3D0Q0,6455
|
|
24
|
-
chainlit/frontend/dist/index.html,sha256=MMFp2Ha-jsBtRF2hc4_k_i5r-coAyaoX9pOXpiMvHPw,1005
|
|
25
|
-
chainlit/haystack/__init__.py,sha256=uZ77YiPy-qleSTi3dQCDO9HE6S6F6GpJWmh7jO4cxXA,217
|
|
26
|
-
chainlit/haystack/callbacks.py,sha256=tItLc6OmskPeDEJH2Qjtg7KgAgIy1TuYQYHTZm9cr3U,5209
|
|
27
|
-
chainlit/hello.py,sha256=LwENQWo5s5r8nNDn4iKSV77vX60Ky5r_qGjQhyi7qlY,416
|
|
28
|
-
chainlit/input_widget.py,sha256=1Z1qn3YwaZ7upqqxZXtbfDxBlVobDjbZ3HtlNOj-U3E,4880
|
|
29
|
-
chainlit/langchain/__init__.py,sha256=zErMw0_3ufSGeF9ye7X0ZX3wDat4mTOx97T40ePDO2g,217
|
|
30
|
-
chainlit/langchain/callbacks.py,sha256=Mwne3kTf0ZenFkfzBsLSiL4FwZV2iMKMkSPBzLLytNg,20509
|
|
31
|
-
chainlit/langflow/__init__.py,sha256=wxhxdsl1yxdsRyNTgZticxFF_8VFtJJ4OdIy3tnEIyM,817
|
|
32
|
-
chainlit/llama_index/__init__.py,sha256=c7wIUZmKTtZPU9zpdGpKTHctQaBWTuRGqTN0kkIkBcg,218
|
|
33
|
-
chainlit/llama_index/callbacks.py,sha256=ZyPLzePZMXXemozoc9SrRvTpPVWCqCkXtoDE-6R9fkY,6068
|
|
34
|
-
chainlit/logger.py,sha256=wTwRSZsLfXwWy6U4351IgWAm4KCMThgxm9EZpjGUEr4,373
|
|
35
|
-
chainlit/markdown.py,sha256=L2IPPWxIlrhJZcKPfO1akomHdN3sgC2EvC2ilxR8MQs,1624
|
|
36
|
-
chainlit/message.py,sha256=Lta7vQ3S3Zn1cNobypKOBVXDIAKMCOLLsRnNE4G2oZU,17690
|
|
37
|
-
chainlit/oauth_providers.py,sha256=WiKUFpNp0RRN5Vq6LHCR9V-9td_1YEn2yD8iGu8atvY,17459
|
|
38
|
-
chainlit/openai/__init__.py,sha256=ASiUNEvsFaDJeXGjZHbLTHhSyjGFvjhT0TRPu0_HpT4,2002
|
|
39
|
-
chainlit/playground/__init__.py,sha256=igNRcBgqLKPTjOQtTNhhGNJFmZn-Dl1fHRQzQSjDGTQ,80
|
|
40
|
-
chainlit/playground/config.py,sha256=_T0ELFRfBVUIOlaNvp3Af3X7wfMEQjxZPh26X_6mXYY,1033
|
|
41
|
-
chainlit/playground/provider.py,sha256=tU805uWOX6Tgh8rMoqVWdWqVq0nyylkrI8l2KZv2biw,3858
|
|
42
|
-
chainlit/playground/providers/__init__.py,sha256=DxVp9BbQUdAPstpDTg2koNUTMS3tJa84iPTt_gQoHGM,236
|
|
43
|
-
chainlit/playground/providers/anthropic.py,sha256=M9I0-RpKAmEJzGnH4-XW7n8yvNtr9phlPGnjr_32lfs,3495
|
|
44
|
-
chainlit/playground/providers/huggingface.py,sha256=AmBmIzvfqBjswEI40jifb0OrMQkTk5rXCkGX7nMJ-bk,2130
|
|
45
|
-
chainlit/playground/providers/langchain.py,sha256=8_gfZr3iEHhyFiR1X1bo-yfxZWjJkHaw_76MvWLZTYc,3103
|
|
46
|
-
chainlit/playground/providers/openai.py,sha256=_Gnzfk9UHrDS83y3_OdhLWO13E800Z0RrIUsUv00syo,12397
|
|
47
|
-
chainlit/playground/providers/vertexai.py,sha256=zKy501f-MHnLrvuRzN50FqgB3xoHzfQFTVbw83Nsj20,5084
|
|
48
|
-
chainlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
chainlit/secret.py,sha256=cQvIFGTQ7r2heC8EOGdgifSZZYqslh-qQxhUhKhD8vU,295
|
|
50
|
-
chainlit/server.py,sha256=BECuGx0jgcYRFVaHLGf2GWT70XYitVzAN6rmcflxwVc,22294
|
|
51
|
-
chainlit/session.py,sha256=AP9xhIM0HuvlOrPgcWR6sg161rSmZZ-iDPvJF0f6pZg,8844
|
|
52
|
-
chainlit/socket.py,sha256=h5IRgFgY5JcwpAiSHGylVDKwx0J-zEjd_wUhEyTnNTM,9846
|
|
53
|
-
chainlit/step.py,sha256=Pk19uKmw0rcDaB3e-Bu5a269zV9DsyOg3A_bj0aw9I0,12749
|
|
54
|
-
chainlit/sync.py,sha256=G1n-7-3WgXsN8y1bJkEyws_YwmHZIyDZoZUwhprigag,1235
|
|
55
|
-
chainlit/telemetry.py,sha256=Rk4dnZv0OnGOgV4kD-VHdhgl4i7i3ypqhSE_R-LZceM,3060
|
|
56
|
-
chainlit/translations/en-US.json,sha256=PZftP1AeDhMWsXf81uHBhoewAryv0X0RJeAWw55G-LU,4272
|
|
57
|
-
chainlit/translations/pt-BR.json,sha256=vTVGrrvT6amFloS_o0WH1n2xpGJmZ14INQ08MDDuxq8,4526
|
|
58
|
-
chainlit/types.py,sha256=PnmLl8oBwoYVrohyY1e6YQzBIap3utjSN_rLeNuO_xY,3379
|
|
59
|
-
chainlit/user.py,sha256=Cw4uGz0ffivWFszv8W__EHwkvTHQ3Lj9hqpRCPxFujo,619
|
|
60
|
-
chainlit/user_session.py,sha256=nyPx8vSICP8BhpPcW5h9vbHVf9ixj39SrkvJBUI_6zs,1368
|
|
61
|
-
chainlit/utils.py,sha256=3HzhfZ4XJhBIe9sJ_3Lxv3lMH4mFXsi6nLBGqm8Gtdw,2571
|
|
62
|
-
chainlit/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
63
|
-
chainlit-1.0.400.dist-info/METADATA,sha256=xLK9SY5ZTVu5OA7SMw4ZpxOQTr6XDAI78_8LkdXr5rs,5539
|
|
64
|
-
chainlit-1.0.400.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
65
|
-
chainlit-1.0.400.dist-info/entry_points.txt,sha256=FrkqdjrFl8juSnvBndniyX7XuKojmUwO4ghRh-CFMQc,45
|
|
66
|
-
chainlit-1.0.400.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|