chainlit 1.0.401__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 +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 +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.401.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.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.3.dist-info}/WHEEL +0 -0
- {chainlit-1.0.401.dist-info → chainlit-2.0.3.dist-info}/entry_points.txt +0 -0
chainlit/translations/en-US.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"TaskList": {
|
|
21
21
|
"title": "🗒️ Task List",
|
|
22
22
|
"loading": "Loading...",
|
|
23
|
-
"error": "An error
|
|
23
|
+
"error": "An error occurred"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"attachments": {
|
|
@@ -34,15 +34,85 @@
|
|
|
34
34
|
"confirm": "Confirm"
|
|
35
35
|
},
|
|
36
36
|
"settingsModal": {
|
|
37
|
+
"settings": "Settings",
|
|
37
38
|
"expandMessages": "Expand Messages",
|
|
38
39
|
"hideChainOfThought": "Hide Chain of Thought",
|
|
39
40
|
"darkMode": "Dark Mode"
|
|
41
|
+
},
|
|
42
|
+
"detailsButton": {
|
|
43
|
+
"using": "Using",
|
|
44
|
+
"used": "Used"
|
|
45
|
+
},
|
|
46
|
+
"auth": {
|
|
47
|
+
"authLogin": {
|
|
48
|
+
"title": "Login to access the app.",
|
|
49
|
+
"form": {
|
|
50
|
+
"email": "Email address",
|
|
51
|
+
"password": "Password",
|
|
52
|
+
"noAccount": "Don't have an account?",
|
|
53
|
+
"alreadyHaveAccount": "Already have an account?",
|
|
54
|
+
"signup": "Sign Up",
|
|
55
|
+
"signin": "Sign In",
|
|
56
|
+
"or": "OR",
|
|
57
|
+
"continue": "Continue",
|
|
58
|
+
"forgotPassword": "Forgot password?",
|
|
59
|
+
"passwordMustContain": "Your password must contain:",
|
|
60
|
+
"emailRequired": "email is a required field",
|
|
61
|
+
"passwordRequired": "password is a required field"
|
|
62
|
+
},
|
|
63
|
+
"error": {
|
|
64
|
+
"default": "Unable to sign in.",
|
|
65
|
+
"signin": "Try signing in with a different account.",
|
|
66
|
+
"oauthsignin": "Try signing in with a different account.",
|
|
67
|
+
"redirect_uri_mismatch": "The redirect URI is not matching the oauth app configuration.",
|
|
68
|
+
"oauthcallbackerror": "Try signing in with a different account.",
|
|
69
|
+
"oauthcreateaccount": "Try signing in with a different account.",
|
|
70
|
+
"emailcreateaccount": "Try signing in with a different account.",
|
|
71
|
+
"callback": "Try signing in with a different account.",
|
|
72
|
+
"oauthaccountnotlinked": "To confirm your identity, sign in with the same account you used originally.",
|
|
73
|
+
"emailsignin": "The e-mail could not be sent.",
|
|
74
|
+
"emailverify": "Please verify your email, a new email has been sent.",
|
|
75
|
+
"credentialssignin": "Sign in failed. Check the details you provided are correct.",
|
|
76
|
+
"sessionrequired": "Please sign in to access this page."
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"authVerifyEmail": {
|
|
80
|
+
"almostThere": "You're almost there! We've sent an email to ",
|
|
81
|
+
"verifyEmailLink": "Please click on the link in that email to complete your signup.",
|
|
82
|
+
"didNotReceive": "Can't find the email?",
|
|
83
|
+
"resendEmail": "Resend email",
|
|
84
|
+
"goBack": "Go Back",
|
|
85
|
+
"emailSent": "Email sent successfully.",
|
|
86
|
+
"verifyEmail": "Verify your email address"
|
|
87
|
+
},
|
|
88
|
+
"providerButton": {
|
|
89
|
+
"continue": "Continue with {{provider}}",
|
|
90
|
+
"signup": "Sign up with {{provider}}"
|
|
91
|
+
},
|
|
92
|
+
"authResetPassword": {
|
|
93
|
+
"newPasswordRequired": "New password is a required field",
|
|
94
|
+
"passwordsMustMatch": "Passwords must match",
|
|
95
|
+
"confirmPasswordRequired": "Confirm password is a required field",
|
|
96
|
+
"newPassword": "New password",
|
|
97
|
+
"confirmPassword": "Confirm password",
|
|
98
|
+
"resetPassword": "Reset Password"
|
|
99
|
+
},
|
|
100
|
+
"authForgotPassword": {
|
|
101
|
+
"email": "Email address",
|
|
102
|
+
"emailRequired": "email is a required field",
|
|
103
|
+
"emailSent": "Please check the email address {{email}} for instructions to reset your password.",
|
|
104
|
+
"enterEmail": "Enter your email address and we will send you instructions to reset your password.",
|
|
105
|
+
"resendEmail": "Resend email",
|
|
106
|
+
"continue": "Continue",
|
|
107
|
+
"goBack": "Go Back"
|
|
108
|
+
}
|
|
40
109
|
}
|
|
41
110
|
},
|
|
42
111
|
"organisms": {
|
|
43
112
|
"chat": {
|
|
44
113
|
"history": {
|
|
45
114
|
"index": {
|
|
115
|
+
"showHistory": "Show history",
|
|
46
116
|
"lastInputs": "Last Inputs",
|
|
47
117
|
"noInputs": "Such empty...",
|
|
48
118
|
"loading": "Loading..."
|
|
@@ -54,7 +124,8 @@
|
|
|
54
124
|
},
|
|
55
125
|
"speechButton": {
|
|
56
126
|
"start": "Start recording",
|
|
57
|
-
"stop": "Stop recording"
|
|
127
|
+
"stop": "Stop recording",
|
|
128
|
+
"loading": "Connecting"
|
|
58
129
|
},
|
|
59
130
|
"SubmitButton": {
|
|
60
131
|
"sendMessage": "Send message",
|
|
@@ -74,6 +145,10 @@
|
|
|
74
145
|
"failed": "failed",
|
|
75
146
|
"feedbackUpdated": "Feedback updated",
|
|
76
147
|
"updating": "Updating"
|
|
148
|
+
},
|
|
149
|
+
"copyButton": {
|
|
150
|
+
"copyToClipboard": "Copy to clipboard",
|
|
151
|
+
"copied": "Copied!"
|
|
77
152
|
}
|
|
78
153
|
},
|
|
79
154
|
"dropScreen": {
|
|
@@ -105,7 +180,7 @@
|
|
|
105
180
|
}
|
|
106
181
|
},
|
|
107
182
|
"DeleteThreadButton": {
|
|
108
|
-
"confirmMessage": "This will delete the thread as well as
|
|
183
|
+
"confirmMessage": "This will delete the thread as well as its messages and elements.",
|
|
109
184
|
"cancel": "Cancel",
|
|
110
185
|
"confirm": "Confirm",
|
|
111
186
|
"deletingChat": "Deleting chat",
|
|
@@ -115,7 +190,11 @@
|
|
|
115
190
|
"pastChats": "Past Chats"
|
|
116
191
|
},
|
|
117
192
|
"ThreadList": {
|
|
118
|
-
"empty": "Empty..."
|
|
193
|
+
"empty": "Empty...",
|
|
194
|
+
"today": "Today",
|
|
195
|
+
"yesterday": "Yesterday",
|
|
196
|
+
"previous7days": "Previous 7 days",
|
|
197
|
+
"previous30days": "Previous 30 days"
|
|
119
198
|
},
|
|
120
199
|
"TriggerButton": {
|
|
121
200
|
"closeSidebar": "Close sidebar",
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components": {
|
|
3
|
+
"atoms": {
|
|
4
|
+
"buttons": {
|
|
5
|
+
"userButton": {
|
|
6
|
+
"menu": {
|
|
7
|
+
"settings": "સુયોજનો",
|
|
8
|
+
"settingsKey": "S",
|
|
9
|
+
"APIKeys": "API કીઓ",
|
|
10
|
+
"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": "રીડાયરેક્ટ URI એ oauth એપ્લિકેશન રૂપરેખાંકન સાથે બંધબેસતી નથી.",
|
|
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
|
+
},
|
|
155
|
+
"dropScreen": {
|
|
156
|
+
"dropYourFilesHere": "તમારી ફાઇલોને અંહિ મૂકો"
|
|
157
|
+
},
|
|
158
|
+
"index": {
|
|
159
|
+
"failedToUpload": "અપલોડ કરવામાં નિષ્ફળ",
|
|
160
|
+
"cancelledUploadOf": "નું અપલોડ રદ થયેલ છે",
|
|
161
|
+
"couldNotReachServer": "સર્વર સુધી પહોંચી શક્યા નહિં",
|
|
162
|
+
"continuingChat": "પહેલાની વાતચીતને ચાલુ રાખી રહ્યા છે"
|
|
163
|
+
},
|
|
164
|
+
"settings": {
|
|
165
|
+
"settingsPanel": "પેનલ સુયોજનો",
|
|
166
|
+
"reset": "પુન:સુયોજિત કરો",
|
|
167
|
+
"cancel": "રદ્દ",
|
|
168
|
+
"confirm": "ખાતરી કરો"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"threadHistory": {
|
|
172
|
+
"sidebar": {
|
|
173
|
+
"filters": {
|
|
174
|
+
"FeedbackSelect": {
|
|
175
|
+
"feedbackAll": "પ્રતિસાદ: બધા",
|
|
176
|
+
"feedbackPositive": "પ્રતિસાદ: હકારાત્મક",
|
|
177
|
+
"feedbackNegative": "પ્રતિસાદ: નકારાત્મક"
|
|
178
|
+
},
|
|
179
|
+
"SearchBar": {
|
|
180
|
+
"search": "શોધવું"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"DeleteThreadButton": {
|
|
184
|
+
"confirmMessage": "આ થ્રેડની સાથે સાથે તેના સંદેશા અને તત્વોને પણ કાઢી નાખશે.",
|
|
185
|
+
"cancel": "રદ્દ",
|
|
186
|
+
"confirm": "ખાતરી કરો",
|
|
187
|
+
"deletingChat": "ચૅટને કાઢી રહ્યા છીએ",
|
|
188
|
+
"chatDeleted": "ચૅટ ડિલીટ થઈ ગઈ"
|
|
189
|
+
},
|
|
190
|
+
"index": {
|
|
191
|
+
"pastChats": "ભૂતકાળની વાતચીતો"
|
|
192
|
+
},
|
|
193
|
+
"ThreadList": {
|
|
194
|
+
"empty": "ખાલી...",
|
|
195
|
+
"today": "આજે",
|
|
196
|
+
"yesterday": "ગઇકાલે",
|
|
197
|
+
"previous7days": "પહેલાના ૭ દિવસો",
|
|
198
|
+
"previous30days": "પહેલાના ૩૦ દિવસો"
|
|
199
|
+
},
|
|
200
|
+
"TriggerButton": {
|
|
201
|
+
"closeSidebar": "બાજુપટ્ટીને બંધ કરો",
|
|
202
|
+
"openSidebar": "બાજુપટ્ટી ખોલો"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"Thread": {
|
|
206
|
+
"backToChat": "સંવાદમાં પાછા જાઓ",
|
|
207
|
+
"chatCreatedOn": "આ વાતચીત તેની પર બનાવેલ હતી"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"header": {
|
|
211
|
+
"chat": "સંવાદ",
|
|
212
|
+
"readme": "રીડમે"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"hooks": {
|
|
217
|
+
"useLLMProviders": {
|
|
218
|
+
"failedToFetchProviders": "પ્રદાતાઓને લાવવામાં નિષ્ફળતા:"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"pages": {
|
|
222
|
+
"Design": {},
|
|
223
|
+
"Env": {
|
|
224
|
+
"savedSuccessfully": "સફળતાપૂર્વક સંગ્રહાયેલ",
|
|
225
|
+
"requiredApiKeys": "જરૂરી API કીઓ",
|
|
226
|
+
"requiredApiKeysInfo": "આ એપ્લિકેશનનો ઉપયોગ કરવા માટે, નીચેની API કીઓ જરૂરી છે. કીઓ તમારા ડિવાઇસના સ્થાનિક સ્ટોરેજ પર સંગ્રહિત થાય છે."
|
|
227
|
+
},
|
|
228
|
+
"Page": {
|
|
229
|
+
"notPartOfProject": "તમે આ પ્રોજેક્ટનો ભાગ નથી."
|
|
230
|
+
},
|
|
231
|
+
"ResumeButton": {
|
|
232
|
+
"resumeChat": "ફરી શરૂ કરો સંવાદ"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components": {
|
|
3
|
+
"atoms": {
|
|
4
|
+
"buttons": {
|
|
5
|
+
"userButton": {
|
|
6
|
+
"menu": {
|
|
7
|
+
"settings": "הגדרות",
|
|
8
|
+
"settingsKey": "S",
|
|
9
|
+
"APIKeys": "API Keys",
|
|
10
|
+
"logout": "התנתק"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"molecules": {
|
|
16
|
+
"newChatButton": {
|
|
17
|
+
"newChat": "צ'אט חדש"
|
|
18
|
+
},
|
|
19
|
+
"tasklist": {
|
|
20
|
+
"TaskList": {
|
|
21
|
+
"title": "\ud83d\uddd2\ufe0f Task List",
|
|
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": "כתובת ה-URI להפניה אינה תואמת לתצורת האפליקציה של oauth.",
|
|
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
|
+
},
|
|
155
|
+
"dropScreen": {
|
|
156
|
+
"dropYourFilesHere": "שחרר את הקבצים שלך כאן"
|
|
157
|
+
},
|
|
158
|
+
"index": {
|
|
159
|
+
"failedToUpload": "העלאה נכשלה",
|
|
160
|
+
"cancelledUploadOf": "העלאה של בוטלה",
|
|
161
|
+
"couldNotReachServer": "לא ניתן היה להגיע לשרת",
|
|
162
|
+
"continuingChat": "ממשיך בצ'אט הקודם"
|
|
163
|
+
},
|
|
164
|
+
"settings": {
|
|
165
|
+
"settingsPanel": "לוח הגדרות",
|
|
166
|
+
"reset": "אפס",
|
|
167
|
+
"cancel": "בטל",
|
|
168
|
+
"confirm": "אשר"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"threadHistory": {
|
|
172
|
+
"sidebar": {
|
|
173
|
+
"filters": {
|
|
174
|
+
"FeedbackSelect": {
|
|
175
|
+
"feedbackAll": "משוב: הכל",
|
|
176
|
+
"feedbackPositive": "משוב: חיובי",
|
|
177
|
+
"feedbackNegative": "משוב: שלילי"
|
|
178
|
+
},
|
|
179
|
+
"SearchBar": {
|
|
180
|
+
"search": "חיפוש"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"DeleteThreadButton": {
|
|
184
|
+
"confirmMessage": "פעולה זו תמחק את השרשור וכן את ההודעות והרכיבים שלו.",
|
|
185
|
+
"cancel": "בטל",
|
|
186
|
+
"confirm": "אשר",
|
|
187
|
+
"deletingChat": "מוחק צ'אט",
|
|
188
|
+
"chatDeleted": "הצ'אט נמחק"
|
|
189
|
+
},
|
|
190
|
+
"index": {
|
|
191
|
+
"pastChats": "צ'אטים קודמים"
|
|
192
|
+
},
|
|
193
|
+
"ThreadList": {
|
|
194
|
+
"empty": "ריק...",
|
|
195
|
+
"today": "היום",
|
|
196
|
+
"yesterday": "אתמול",
|
|
197
|
+
"previous7days": "7 ימים קודמים",
|
|
198
|
+
"previous30days": "30 ימים קודמים"
|
|
199
|
+
},
|
|
200
|
+
"TriggerButton": {
|
|
201
|
+
"closeSidebar": "סגור סרגל צד",
|
|
202
|
+
"openSidebar": "פתח סרגל צד"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"Thread": {
|
|
206
|
+
"backToChat": "חזור לצ'אט",
|
|
207
|
+
"chatCreatedOn": "הצ'אט הזה נוצר בתאריך"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"header": {
|
|
211
|
+
"chat": "צ'אט",
|
|
212
|
+
"readme": "אודות"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"hooks": {
|
|
217
|
+
"useLLMProviders": {
|
|
218
|
+
"failedToFetchProviders": "נכשלה הבאת ספקים:"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"pages": {
|
|
222
|
+
"Design": {},
|
|
223
|
+
"Env": {
|
|
224
|
+
"savedSuccessfully": "נשמר בהצלחה",
|
|
225
|
+
"requiredApiKeys": "מפתחות API נדרשים",
|
|
226
|
+
"requiredApiKeysInfo": "כדי להשתמש באפליקציה זו, נדרשים מפתחות ה-API הבאים. המפתחות מאוחסנים באחסון המקומי של המכשיר שלך."
|
|
227
|
+
},
|
|
228
|
+
"Page": {
|
|
229
|
+
"notPartOfProject": "אתה לא חלק מהפרויקט הזה."
|
|
230
|
+
},
|
|
231
|
+
"ResumeButton": {
|
|
232
|
+
"resumeChat": "המשך צ'אט"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|