chainlit 1.0.401__py3-none-any.whl → 2.0.4__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 +123 -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 +191 -102
- 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 +614 -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 +81 -29
- chainlit/frontend/dist/assets/DailyMotion-Ce9dQoqZ.js +1 -0
- chainlit/frontend/dist/assets/Dataframe-C1XonMcV.js +22 -0
- chainlit/frontend/dist/assets/Facebook-DVVt6lrr.js +1 -0
- chainlit/frontend/dist/assets/FilePlayer-c7stW4vz.js +1 -0
- chainlit/frontend/dist/assets/Kaltura-BmMmgorA.js +1 -0
- chainlit/frontend/dist/assets/Mixcloud-Cw8hDmiO.js +1 -0
- chainlit/frontend/dist/assets/Mux-DiRZfeUf.js +1 -0
- chainlit/frontend/dist/assets/Preview-6Jt2mRHx.js +1 -0
- chainlit/frontend/dist/assets/SoundCloud-DKwcT58_.js +1 -0
- chainlit/frontend/dist/assets/Streamable-BVdxrEeX.js +1 -0
- chainlit/frontend/dist/assets/Twitch-DFqZR7Gu.js +1 -0
- chainlit/frontend/dist/assets/Vidyard-0BQAAtVk.js +1 -0
- chainlit/frontend/dist/assets/Vimeo-CRFSH0Vu.js +1 -0
- chainlit/frontend/dist/assets/Wistia-CKrmdQaG.js +1 -0
- chainlit/frontend/dist/assets/YouTube-CQpL-rvU.js +1 -0
- chainlit/frontend/dist/assets/index-DQmLRKyv.css +1 -0
- chainlit/frontend/dist/assets/index-QdmxtIMQ.js +8665 -0
- chainlit/frontend/dist/assets/react-plotly-B9hvVpUG.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 +103 -68
- chainlit/langflow/__init__.py +1 -0
- chainlit/llama_index/callbacks.py +65 -40
- 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 +244 -0
- chainlit/translations/en-US.json +122 -8
- chainlit/translations/gu.json +244 -0
- chainlit/translations/he-IL.json +244 -0
- chainlit/translations/hi.json +244 -0
- chainlit/translations/ja.json +242 -0
- chainlit/translations/kn.json +244 -0
- chainlit/translations/ml.json +244 -0
- chainlit/translations/mr.json +244 -0
- chainlit/translations/nl-NL.json +242 -0
- chainlit/translations/ta.json +244 -0
- chainlit/translations/te.json +244 -0
- chainlit/translations/zh-CN.json +243 -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.401.dist-info → chainlit-2.0.4.dist-info}/METADATA +48 -50
- chainlit-2.0.4.dist-info/RECORD +107 -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.401.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.401.dist-info → chainlit-2.0.4.dist-info}/WHEEL +0 -0
- {chainlit-1.0.401.dist-info → chainlit-2.0.4.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components": {
|
|
3
|
+
"atoms": {
|
|
4
|
+
"buttons": {
|
|
5
|
+
"userButton": {
|
|
6
|
+
"menu": {
|
|
7
|
+
"settings": "सेटिंग्स",
|
|
8
|
+
"settingsKey": "S",
|
|
9
|
+
"APIKeys": "एपीआय कीज",
|
|
10
|
+
"logout": "Logout"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"molecules": {
|
|
16
|
+
"newChatButton": {
|
|
17
|
+
"newChat": "नवीन गप्पा"
|
|
18
|
+
},
|
|
19
|
+
"tasklist": {
|
|
20
|
+
"TaskList": {
|
|
21
|
+
"title": "🗒️ कार्य सूची",
|
|
22
|
+
"loading": "लोडिंग...",
|
|
23
|
+
"error": "एक त्रुटी झाली"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"attachments": {
|
|
27
|
+
"cancelUpload": "अपलोड रद्द करा",
|
|
28
|
+
"removeAttachment": "संलग्नता काढून टाका"
|
|
29
|
+
},
|
|
30
|
+
"newChatDialog": {
|
|
31
|
+
"createNewChat": "नवीन चॅट तयार करा?",
|
|
32
|
+
"clearChat": "यामुळे सध्याचे मेसेज क्लिअर होतील आणि नवीन चॅट सुरू होईल.",
|
|
33
|
+
"cancel": "रद्द करा",
|
|
34
|
+
"confirm": "पुष्टी करा"
|
|
35
|
+
},
|
|
36
|
+
"settingsModal": {
|
|
37
|
+
"settings": "सेटिंग्स",
|
|
38
|
+
"expandMessages": "संदेश ांचा विस्तार करा",
|
|
39
|
+
"hideChainOfThought": "विचारांची साखळी लपवा",
|
|
40
|
+
"darkMode": "डार्क मोड"
|
|
41
|
+
},
|
|
42
|
+
"detailsButton": {
|
|
43
|
+
"using": "वापरत",
|
|
44
|
+
"running": "धावत आहे.",
|
|
45
|
+
"took_one": "{{count}} पाऊल उचलले",
|
|
46
|
+
"took_other": "{{count}} पावले उचलली"
|
|
47
|
+
},
|
|
48
|
+
"auth": {
|
|
49
|
+
"authLogin": {
|
|
50
|
+
"title": "अ ॅपमध्ये प्रवेश करण्यासाठी लॉगिन करा.",
|
|
51
|
+
"form": {
|
|
52
|
+
"email": "ईमेल पत्ता",
|
|
53
|
+
"password": "पासवर्ड",
|
|
54
|
+
"noAccount": "खाते नाही का?",
|
|
55
|
+
"alreadyHaveAccount": "आधीच खाते आहे का?",
|
|
56
|
+
"signup": "साइन अप करा",
|
|
57
|
+
"signin": "साइन इन",
|
|
58
|
+
"or": "किंवा",
|
|
59
|
+
"continue": "चालू ठेवा",
|
|
60
|
+
"forgotPassword": "पासवर्ड विसरला?",
|
|
61
|
+
"passwordMustContain": "आपल्या पासवर्डमध्ये हे असणे आवश्यक आहे:",
|
|
62
|
+
"emailRequired": "ईमेल हे एक आवश्यक क्षेत्र आहे",
|
|
63
|
+
"passwordRequired": "पासवर्ड हे एक आवश्यक क्षेत्र आहे"
|
|
64
|
+
},
|
|
65
|
+
"error": {
|
|
66
|
+
"default": "साइन इन करण्यास अक्षम.",
|
|
67
|
+
"signin": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
68
|
+
"oauthsignin": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
69
|
+
"redirect_uri_mismatch": "रिडायरेक्ट यूआरआय ऑथ अॅप कॉन्फिगरेशनशी जुळत नाही.",
|
|
70
|
+
"oauthcallbackerror": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
71
|
+
"oauthcreateaccount": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
72
|
+
"emailcreateaccount": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
73
|
+
"callback": "वेगळ्या खात्यासह साइन इन करण्याचा प्रयत्न करा.",
|
|
74
|
+
"oauthaccountnotlinked": "आपली ओळख निश्चित करण्यासाठी, आपण मूळवापरलेल्या खात्यासह साइन इन करा.",
|
|
75
|
+
"emailsignin": "ई-मेल पाठवता आला नाही.",
|
|
76
|
+
"emailverify": "कृपया आपल्या ईमेलची पडताळणी करा, एक नवीन ईमेल पाठविला गेला आहे.",
|
|
77
|
+
"credentialssignin": "साइन इन अयशस्वी झाले. आपण दिलेला तपशील योग्य आहे हे तपासा.",
|
|
78
|
+
"sessionrequired": "कृपया या पृष्ठावर प्रवेश करण्यासाठी साइन इन करा."
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"authVerifyEmail": {
|
|
82
|
+
"almostThere": "तू जवळजवळ तिथेच आहेस! आम्ही एक ईमेल पाठवला आहे. ",
|
|
83
|
+
"verifyEmailLink": "आपले साइनअप पूर्ण करण्यासाठी कृपया त्या ईमेलमधील लिंकवर क्लिक करा.",
|
|
84
|
+
"didNotReceive": "ईमेल सापडत नाही का?",
|
|
85
|
+
"resendEmail": "ईमेल पुन्हा पाठवा",
|
|
86
|
+
"goBack": "परत जा",
|
|
87
|
+
"emailSent": "ईमेल यशस्वीरित्या पाठविला.",
|
|
88
|
+
"verifyEmail": "आपला ईमेल पत्ता पडताळून पहा"
|
|
89
|
+
},
|
|
90
|
+
"providerButton": {
|
|
91
|
+
"continue": "{{provider}} चालू ठेवा",
|
|
92
|
+
"signup": "{{provider}} सह साइन अप करा"
|
|
93
|
+
},
|
|
94
|
+
"authResetPassword": {
|
|
95
|
+
"newPasswordRequired": "नवीन पासवर्ड हे आवश्यक क्षेत्र आहे",
|
|
96
|
+
"passwordsMustMatch": "पासवर्ड जुळणे आवश्यक आहे",
|
|
97
|
+
"confirmPasswordRequired": "पासवर्ड आवश्यक क्षेत्र आहे याची पुष्टी करा",
|
|
98
|
+
"newPassword": "नवीन पासवर्ड",
|
|
99
|
+
"confirmPassword": "पासवर्ड ची पुष्टी करा",
|
|
100
|
+
"resetPassword": "पासवर्ड रीसेट करा"
|
|
101
|
+
},
|
|
102
|
+
"authForgotPassword": {
|
|
103
|
+
"email": "ईमेल पत्ता",
|
|
104
|
+
"emailRequired": "ईमेल हे एक आवश्यक क्षेत्र आहे",
|
|
105
|
+
"emailSent": "आपला पासवर्ड रीसेट करण्याच्या सूचनांसाठी कृपया ईमेल पत्ता {{email}} तपासा.",
|
|
106
|
+
"enterEmail": "आपला ईमेल पत्ता प्रविष्ट करा आणि आम्ही आपल्याला आपला पासवर्ड रीसेट करण्याच्या सूचना पाठवू.",
|
|
107
|
+
"resendEmail": "ईमेल पुन्हा पाठवा",
|
|
108
|
+
"continue": "चालू ठेवा",
|
|
109
|
+
"goBack": "परत जा"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"organisms": {
|
|
114
|
+
"chat": {
|
|
115
|
+
"history": {
|
|
116
|
+
"index": {
|
|
117
|
+
"showHistory": "इतिहास दाखवा",
|
|
118
|
+
"lastInputs": "शेवटची माहिती",
|
|
119
|
+
"noInputs": "इतकी रिकामी...",
|
|
120
|
+
"loading": "लोडिंग..."
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"inputBox": {
|
|
124
|
+
"input": {
|
|
125
|
+
"placeholder": "तुमचा मेसेज इथे टाईप करा..."
|
|
126
|
+
},
|
|
127
|
+
"speechButton": {
|
|
128
|
+
"start": "रेकॉर्डिंग सुरू करा",
|
|
129
|
+
"stop": "रेकॉर्डिंग थांबवा"
|
|
130
|
+
},
|
|
131
|
+
"SubmitButton": {
|
|
132
|
+
"sendMessage": "संदेश पाठवा",
|
|
133
|
+
"stopTask": "कार्य थांबवा"
|
|
134
|
+
},
|
|
135
|
+
"UploadButton": {
|
|
136
|
+
"attachFiles": "फाईल्स संलग्न करा"
|
|
137
|
+
},
|
|
138
|
+
"waterMark": {
|
|
139
|
+
"text": "यासह बांधले आहे"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"Messages": {
|
|
143
|
+
"index": {
|
|
144
|
+
"running": "धावत आहे.",
|
|
145
|
+
"executedSuccessfully": "यशस्वीरित्या राबविली",
|
|
146
|
+
"failed": "अपयशी ठरले",
|
|
147
|
+
"feedbackUpdated": "अभिप्राय अद्ययावत",
|
|
148
|
+
"updating": "अद्ययावत करणे"
|
|
149
|
+
},
|
|
150
|
+
"copyButton": {
|
|
151
|
+
"copyToClipboard": "Copy to clipboard",
|
|
152
|
+
"copied": "Copied!"
|
|
153
|
+
},
|
|
154
|
+
"feedbackButton": {
|
|
155
|
+
"helpful": "Helpful",
|
|
156
|
+
"notHelpful": "Not helpful",
|
|
157
|
+
"editFeedback": "Edit feedback"
|
|
158
|
+
},
|
|
159
|
+
"feedbackDialog": {
|
|
160
|
+
"dialogTitle": "Add a comment",
|
|
161
|
+
"submitButton": "Submit feedback"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"dropScreen": {
|
|
165
|
+
"dropYourFilesHere": "आपल्या फायली येथे टाका"
|
|
166
|
+
},
|
|
167
|
+
"index": {
|
|
168
|
+
"failedToUpload": "अपलोड करण्यात अपयश आले",
|
|
169
|
+
"cancelledUploadOf": "रद्द केलेले अपलोड",
|
|
170
|
+
"couldNotReachServer": "सर्व्हरपर्यंत पोहोचू शकले नाही",
|
|
171
|
+
"continuingChat": "मागील गप्पा चालू ठेवा"
|
|
172
|
+
},
|
|
173
|
+
"settings": {
|
|
174
|
+
"settingsPanel": "सेटिंग्स पॅनेल",
|
|
175
|
+
"reset": "रीसेट करा",
|
|
176
|
+
"cancel": "रद्द करा",
|
|
177
|
+
"confirm": "पुष्टी करा"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"threadHistory": {
|
|
181
|
+
"sidebar": {
|
|
182
|
+
"filters": {
|
|
183
|
+
"FeedbackSelect": {
|
|
184
|
+
"feedbackAll": "अभिप्राय: सर्व",
|
|
185
|
+
"feedbackPositive": "अभिप्राय: सकारात्मक",
|
|
186
|
+
"feedbackNegative": "अभिप्राय: नकारात्मक"
|
|
187
|
+
},
|
|
188
|
+
"SearchBar": {
|
|
189
|
+
"search": "शोधणे"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"DeleteThreadButton": {
|
|
193
|
+
"confirmMessage": "हे धागा तसेच त्यातील संदेश आणि घटक डिलीट करेल.",
|
|
194
|
+
"cancel": "रद्द करा",
|
|
195
|
+
"confirm": "पुष्टी करा",
|
|
196
|
+
"deletingChat": "चॅट डिलीट करणे",
|
|
197
|
+
"chatDeleted": "चॅट डिलीट"
|
|
198
|
+
},
|
|
199
|
+
"index": {
|
|
200
|
+
"pastChats": "मागील गप्पा"
|
|
201
|
+
},
|
|
202
|
+
"ThreadList": {
|
|
203
|
+
"empty": "रिक्त।।।",
|
|
204
|
+
"today": "आज",
|
|
205
|
+
"yesterday": "काल",
|
|
206
|
+
"previous7days": "मागील 7 दिवस",
|
|
207
|
+
"previous30days": "मागील ३० दिवस"
|
|
208
|
+
},
|
|
209
|
+
"TriggerButton": {
|
|
210
|
+
"closeSidebar": "साइडबार बंद करा",
|
|
211
|
+
"openSidebar": "ओपन साइडबार"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"Thread": {
|
|
215
|
+
"backToChat": "परत गप्पा मारायला जा",
|
|
216
|
+
"chatCreatedOn": "हे चॅट तयार करण्यात आले होते."
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"header": {
|
|
220
|
+
"chat": "बकवाद करणें",
|
|
221
|
+
"readme": "वाचा"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"hooks": {
|
|
226
|
+
"useLLMProviders": {
|
|
227
|
+
"failedToFetchProviders": "प्रदात्यांना आणण्यात अपयशी:"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"pages": {
|
|
231
|
+
"Design": {},
|
|
232
|
+
"Env": {
|
|
233
|
+
"savedSuccessfully": "यशस्वीरित्या वाचवले",
|
|
234
|
+
"requiredApiKeys": "आवश्यक एपीआय चाव्या",
|
|
235
|
+
"requiredApiKeysInfo": "हे अॅप वापरण्यासाठी खालील एपीआय चाव्या आवश्यक आहेत. चाव्या आपल्या डिव्हाइसच्या स्थानिक स्टोरेजवर संग्रहित केल्या जातात."
|
|
236
|
+
},
|
|
237
|
+
"Page": {
|
|
238
|
+
"notPartOfProject": "तुम्ही या प्रकल्पाचा भाग नाही."
|
|
239
|
+
},
|
|
240
|
+
"ResumeButton": {
|
|
241
|
+
"resumeChat": "चॅट पुन्हा सुरू करा"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components": {
|
|
3
|
+
"atoms": {
|
|
4
|
+
"buttons": {
|
|
5
|
+
"userButton": {
|
|
6
|
+
"menu": {
|
|
7
|
+
"settings": "Instellingen",
|
|
8
|
+
"settingsKey": "I",
|
|
9
|
+
"APIKeys": "API-sleutels",
|
|
10
|
+
"logout": "Uitloggen"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"molecules": {
|
|
16
|
+
"newChatButton": {
|
|
17
|
+
"newChat": "Nieuwe Chat"
|
|
18
|
+
},
|
|
19
|
+
"tasklist": {
|
|
20
|
+
"TaskList": {
|
|
21
|
+
"title": "\ud83d\uddd2\ufe0f Takenlijst",
|
|
22
|
+
"loading": "Laden...",
|
|
23
|
+
"error": "Er is een fout opgetreden"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"attachments": {
|
|
27
|
+
"cancelUpload": "Upload annuleren",
|
|
28
|
+
"removeAttachment": "Bijlage verwijderen"
|
|
29
|
+
},
|
|
30
|
+
"newChatDialog": {
|
|
31
|
+
"createNewChat": "Nieuwe chat maken?",
|
|
32
|
+
"clearChat": "Dit zal de huidige berichten wissen en een nieuwe chat starten.",
|
|
33
|
+
"cancel": "Annuleren",
|
|
34
|
+
"confirm": "Bevestigen"
|
|
35
|
+
},
|
|
36
|
+
"settingsModal": {
|
|
37
|
+
"settings": "Instellingen",
|
|
38
|
+
"expandMessages": "Berichten uitbreiden",
|
|
39
|
+
"hideChainOfThought": "Gedachtenketen verbergen",
|
|
40
|
+
"darkMode": "Donkere modus"
|
|
41
|
+
},
|
|
42
|
+
"detailsButton": {
|
|
43
|
+
"using": "Gebruikt",
|
|
44
|
+
"used": "Gebruikt"
|
|
45
|
+
},
|
|
46
|
+
"auth": {
|
|
47
|
+
"authLogin": {
|
|
48
|
+
"title": "Log in om toegang te krijgen tot de app.",
|
|
49
|
+
"form": {
|
|
50
|
+
"email": "E-mailadres",
|
|
51
|
+
"password": "Wachtwoord",
|
|
52
|
+
"noAccount": "Nog geen account?",
|
|
53
|
+
"alreadyHaveAccount": "Al een account?",
|
|
54
|
+
"signup": "Registreren",
|
|
55
|
+
"signin": "Inloggen",
|
|
56
|
+
"or": "OF",
|
|
57
|
+
"continue": "Doorgaan",
|
|
58
|
+
"forgotPassword": "Wachtwoord vergeten?",
|
|
59
|
+
"passwordMustContain": "Uw wachtwoord moet bevatten:",
|
|
60
|
+
"emailRequired": "e-mail is een verplicht veld",
|
|
61
|
+
"passwordRequired": "wachtwoord is een verplicht veld"
|
|
62
|
+
},
|
|
63
|
+
"error": {
|
|
64
|
+
"default": "Inloggen niet mogelijk.",
|
|
65
|
+
"signin": "Probeer in te loggen met een ander account.",
|
|
66
|
+
"oauthsignin": "Probeer in te loggen met een ander account.",
|
|
67
|
+
"redirect_uri_mismatch": "De omleidings-URI komt niet overeen met de oauth-appconfiguratie.",
|
|
68
|
+
"oauthcallbackerror": "Probeer in te loggen met een ander account.",
|
|
69
|
+
"oauthcreateaccount": "Probeer in te loggen met een ander account.",
|
|
70
|
+
"emailcreateaccount": "Probeer in te loggen met een ander account.",
|
|
71
|
+
"callback": "Probeer in te loggen met een ander account.",
|
|
72
|
+
"oauthaccountnotlinked": "Om uw identiteit te bevestigen, log in met hetzelfde account dat u oorspronkelijk gebruikte.",
|
|
73
|
+
"emailsignin": "De e-mail kon niet worden verzonden.",
|
|
74
|
+
"emailverify": "Verifieer uw e-mail, een nieuwe e-mail is verzonden.",
|
|
75
|
+
"credentialssignin": "Inloggen mislukt. Controleer of de verstrekte gegevens correct zijn.",
|
|
76
|
+
"sessionrequired": "Log in om toegang te krijgen tot deze pagina."
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"authVerifyEmail": {
|
|
80
|
+
"almostThere": "Bijna daar! We hebben een e-mail gestuurd naar ",
|
|
81
|
+
"verifyEmailLink": "Klik op de link in die e-mail om uw registratie te voltooien.",
|
|
82
|
+
"didNotReceive": "Kun je de e-mail niet vinden?",
|
|
83
|
+
"resendEmail": "E-mail opnieuw verzenden",
|
|
84
|
+
"goBack": "Ga terug",
|
|
85
|
+
"emailSent": "E-mail succesvol verzonden.",
|
|
86
|
+
"verifyEmail": "Verifieer uw e-mailadres"
|
|
87
|
+
},
|
|
88
|
+
"providerButton": {
|
|
89
|
+
"continue": "Doorgaan met {{provider}}",
|
|
90
|
+
"signup": "Aanmelden met {{provider}}"
|
|
91
|
+
},
|
|
92
|
+
"authResetPassword": {
|
|
93
|
+
"newPasswordRequired": "Nieuw wachtwoord is een verplicht veld",
|
|
94
|
+
"passwordsMustMatch": "Wachtwoorden moeten overeenkomen",
|
|
95
|
+
"confirmPasswordRequired": "Bevestig wachtwoord is een verplicht veld",
|
|
96
|
+
"newPassword": "Nieuw wachtwoord",
|
|
97
|
+
"confirmPassword": "Bevestig wachtwoord",
|
|
98
|
+
"resetPassword": "Wachtwoord resetten"
|
|
99
|
+
},
|
|
100
|
+
"authForgotPassword": {
|
|
101
|
+
"email": "E-mailadres",
|
|
102
|
+
"emailRequired": "e-mail is een verplicht veld",
|
|
103
|
+
"emailSent": "Controleer het e-mailadres {{email}} voor instructies om uw wachtwoord te resetten.",
|
|
104
|
+
"enterEmail": "Voer uw e-mailadres in en we sturen u instructies om uw wachtwoord te resetten.",
|
|
105
|
+
"resendEmail": "E-mail opnieuw verzenden",
|
|
106
|
+
"continue": "Doorgaan",
|
|
107
|
+
"goBack": "Ga terug"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"organisms": {
|
|
112
|
+
"chat": {
|
|
113
|
+
"history": {
|
|
114
|
+
"index": {
|
|
115
|
+
"showHistory": "Geschiedenis tonen",
|
|
116
|
+
"lastInputs": "Laatste invoer",
|
|
117
|
+
"noInputs": "Zo leeg...",
|
|
118
|
+
"loading": "Laden..."
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"inputBox": {
|
|
122
|
+
"input": {
|
|
123
|
+
"placeholder": "Typ uw bericht hier..."
|
|
124
|
+
},
|
|
125
|
+
"speechButton": {
|
|
126
|
+
"start": "Opname starten",
|
|
127
|
+
"stop": "Opname stoppen"
|
|
128
|
+
},
|
|
129
|
+
"SubmitButton": {
|
|
130
|
+
"sendMessage": "Bericht verzenden",
|
|
131
|
+
"stopTask": "Taak stoppen"
|
|
132
|
+
},
|
|
133
|
+
"UploadButton": {
|
|
134
|
+
"attachFiles": "Bestanden toevoegen"
|
|
135
|
+
},
|
|
136
|
+
"waterMark": {
|
|
137
|
+
"text": "Gebouwd met"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"Messages": {
|
|
141
|
+
"index": {
|
|
142
|
+
"running": "Bezig",
|
|
143
|
+
"executedSuccessfully": "succesvol uitgevoerd",
|
|
144
|
+
"failed": "mislukt",
|
|
145
|
+
"feedbackUpdated": "Feedback bijgewerkt",
|
|
146
|
+
"updating": "Bijwerken"
|
|
147
|
+
},
|
|
148
|
+
"copyButton": {
|
|
149
|
+
"copyToClipboard": "Copy to clipboard",
|
|
150
|
+
"copied": "Copied!"
|
|
151
|
+
},
|
|
152
|
+
"feedbackButton": {
|
|
153
|
+
"helpful": "Helpful",
|
|
154
|
+
"notHelpful": "Not helpful",
|
|
155
|
+
"editFeedback": "Edit feedback"
|
|
156
|
+
},
|
|
157
|
+
"feedbackDialog": {
|
|
158
|
+
"dialogTitle": "Add a comment",
|
|
159
|
+
"submitButton": "Submit feedback"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"dropScreen": {
|
|
163
|
+
"dropYourFilesHere": "Sleep uw bestanden hierheen"
|
|
164
|
+
},
|
|
165
|
+
"index": {
|
|
166
|
+
"failedToUpload": "Uploaden mislukt",
|
|
167
|
+
"cancelledUploadOf": "Upload geannuleerd van",
|
|
168
|
+
"couldNotReachServer": "Server niet bereikbaar",
|
|
169
|
+
"continuingChat": "Vervolg van eerdere chat"
|
|
170
|
+
},
|
|
171
|
+
"settings": {
|
|
172
|
+
"settingsPanel": "Instellingenpaneel",
|
|
173
|
+
"reset": "Resetten",
|
|
174
|
+
"cancel": "Annuleren",
|
|
175
|
+
"confirm": "Bevestigen"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"threadHistory": {
|
|
179
|
+
"sidebar": {
|
|
180
|
+
"filters": {
|
|
181
|
+
"FeedbackSelect": {
|
|
182
|
+
"feedbackAll": "Feedback: Alles",
|
|
183
|
+
"feedbackPositive": "Feedback: Positief",
|
|
184
|
+
"feedbackNegative": "Feedback: Negatief"
|
|
185
|
+
},
|
|
186
|
+
"SearchBar": {
|
|
187
|
+
"search": "Zoeken"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"DeleteThreadButton": {
|
|
191
|
+
"confirmMessage": "Dit verwijdert de thread evenals de berichten en elementen.",
|
|
192
|
+
"cancel": "Annuleren",
|
|
193
|
+
"confirm": "Bevestigen",
|
|
194
|
+
"deletingChat": "Chat verwijderen",
|
|
195
|
+
"chatDeleted": "Chat verwijderd"
|
|
196
|
+
},
|
|
197
|
+
"index": {
|
|
198
|
+
"pastChats": "Vorige Chats"
|
|
199
|
+
},
|
|
200
|
+
"ThreadList": {
|
|
201
|
+
"empty": "Leeg...",
|
|
202
|
+
"today": "Vandaag",
|
|
203
|
+
"yesterday": "Gisteren",
|
|
204
|
+
"previous7days": "Afgelopen 7 dagen",
|
|
205
|
+
"previous30days": "Afgelopen 30 dagen"
|
|
206
|
+
},
|
|
207
|
+
"TriggerButton": {
|
|
208
|
+
"closeSidebar": "Zijbalk sluiten",
|
|
209
|
+
"openSidebar": "Zijbalk openen"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"Thread": {
|
|
213
|
+
"backToChat": "Terug naar chat",
|
|
214
|
+
"chatCreatedOn": "Deze chat is aangemaakt op"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"header": {
|
|
218
|
+
"chat": "Chat",
|
|
219
|
+
"readme": "Readme"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"hooks": {
|
|
224
|
+
"useLLMProviders": {
|
|
225
|
+
"failedToFetchProviders": "Kan providers niet ophalen:"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"pages": {
|
|
229
|
+
"Design": {},
|
|
230
|
+
"Env": {
|
|
231
|
+
"savedSuccessfully": "Succesvol opgeslagen",
|
|
232
|
+
"requiredApiKeys": "Vereiste API-sleutels",
|
|
233
|
+
"requiredApiKeysInfo": "Om deze app te gebruiken, zijn de volgende API-sleutels vereist. De sleutels worden opgeslagen in de lokale opslag van uw apparaat."
|
|
234
|
+
},
|
|
235
|
+
"Page": {
|
|
236
|
+
"notPartOfProject": "U maakt geen deel uit van dit project."
|
|
237
|
+
},
|
|
238
|
+
"ResumeButton": {
|
|
239
|
+
"resumeChat": "Chat hervatten"
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|