@lobehub/chat 1.123.4 → 1.124.1
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.
- package/.env.example +5 -0
- package/CHANGELOG.md +58 -0
- package/Dockerfile +2 -0
- package/Dockerfile.database +2 -0
- package/Dockerfile.pglite +2 -0
- package/changelog/v1.json +21 -0
- package/docs/self-hosting/environment-variables/model-provider.mdx +18 -0
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +20 -0
- package/locales/ar/chat.json +8 -2
- package/locales/ar/editor.json +47 -0
- package/locales/bg-BG/chat.json +8 -2
- package/locales/bg-BG/editor.json +47 -0
- package/locales/de-DE/chat.json +8 -2
- package/locales/de-DE/editor.json +47 -0
- package/locales/en-US/chat.json +8 -2
- package/locales/en-US/editor.json +47 -0
- package/locales/es-ES/chat.json +8 -2
- package/locales/es-ES/editor.json +47 -0
- package/locales/es-ES/models.json +3 -1
- package/locales/fa-IR/chat.json +8 -2
- package/locales/fa-IR/editor.json +47 -0
- package/locales/fr-FR/chat.json +8 -2
- package/locales/fr-FR/editor.json +47 -0
- package/locales/it-IT/chat.json +8 -2
- package/locales/it-IT/editor.json +47 -0
- package/locales/ja-JP/chat.json +8 -2
- package/locales/ja-JP/editor.json +47 -0
- package/locales/ko-KR/chat.json +8 -2
- package/locales/ko-KR/editor.json +47 -0
- package/locales/ko-KR/models.json +3 -1
- package/locales/nl-NL/chat.json +8 -2
- package/locales/nl-NL/editor.json +47 -0
- package/locales/nl-NL/models.json +3 -1
- package/locales/pl-PL/chat.json +8 -2
- package/locales/pl-PL/editor.json +47 -0
- package/locales/pt-BR/chat.json +8 -2
- package/locales/pt-BR/editor.json +47 -0
- package/locales/ru-RU/chat.json +8 -2
- package/locales/ru-RU/editor.json +47 -0
- package/locales/tr-TR/chat.json +8 -2
- package/locales/tr-TR/editor.json +47 -0
- package/locales/vi-VN/chat.json +8 -2
- package/locales/vi-VN/editor.json +47 -0
- package/locales/zh-CN/chat.json +8 -2
- package/locales/zh-CN/editor.json +47 -0
- package/locales/zh-CN/modelProvider.json +1 -1
- package/locales/zh-TW/chat.json +8 -2
- package/locales/zh-TW/editor.json +47 -0
- package/locales/zh-TW/models.json +3 -1
- package/next.config.ts +4 -0
- package/package.json +4 -2
- package/packages/const/src/layoutTokens.ts +1 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +38 -4
- package/packages/model-bank/src/aiModels/groq.ts +26 -8
- package/packages/model-bank/src/aiModels/hunyuan.ts +3 -3
- package/packages/model-bank/src/aiModels/modelscope.ts +13 -2
- package/packages/model-bank/src/aiModels/moonshot.ts +25 -5
- package/packages/model-bank/src/aiModels/novita.ts +40 -9
- package/packages/model-bank/src/aiModels/openrouter.ts +0 -13
- package/packages/model-bank/src/aiModels/qwen.ts +62 -1
- package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -0
- package/packages/model-bank/src/aiModels/volcengine.ts +141 -15
- package/packages/model-runtime/src/newapi/index.test.ts +49 -42
- package/packages/model-runtime/src/newapi/index.ts +124 -143
- package/packages/types/src/index.ts +1 -0
- package/packages/utils/src/index.ts +1 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/{Footer/MessageFromUrl.tsx → MessageFromUrl.tsx} +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +129 -28
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +44 -66
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +141 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +7 -1
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/InboxWelcome/QuestionSuggest.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/OpeningQuestions.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +18 -2
- package/src/app/[variants]/(main)/settings/provider/(detail)/newapi/page.tsx +1 -1
- package/src/config/llm.ts +8 -0
- package/src/features/ChatInput/ActionBar/STT/common.tsx +41 -47
- package/src/features/ChatInput/{Topic → ActionBar/SaveTopic}/index.tsx +15 -4
- package/src/features/ChatInput/ActionBar/Typo/index.tsx +22 -0
- package/src/features/ChatInput/ActionBar/components/Action.tsx +4 -0
- package/src/features/ChatInput/ActionBar/config.ts +7 -1
- package/src/features/ChatInput/ActionBar/index.tsx +40 -51
- package/src/features/ChatInput/ChatInputProvider.tsx +54 -0
- package/src/features/ChatInput/Desktop/FilePreview/FileItem/index.tsx +20 -11
- package/src/features/ChatInput/Desktop/FilePreview/FileList.tsx +16 -15
- package/src/features/ChatInput/Desktop/index.tsx +94 -69
- package/src/features/ChatInput/InputEditor/index.tsx +134 -0
- package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/File.tsx +1 -2
- package/src/features/ChatInput/Mobile/FilePreview/index.tsx +44 -0
- package/src/features/ChatInput/Mobile/index.tsx +72 -0
- package/src/features/ChatInput/SendArea/ExpandButton.tsx +30 -0
- package/src/features/ChatInput/SendArea/SendButton.tsx +29 -0
- package/src/features/ChatInput/SendArea/ShortcutHint.tsx +52 -0
- package/src/features/ChatInput/SendArea/index.tsx +36 -0
- package/src/features/ChatInput/StoreUpdater.tsx +41 -0
- package/src/features/ChatInput/TypoBar/index.tsx +139 -0
- package/src/features/ChatInput/hooks/useChatInputEditor.ts +36 -0
- package/src/features/ChatInput/index.ts +7 -0
- package/src/features/ChatInput/store/action.ts +75 -0
- package/src/features/ChatInput/store/index.ts +23 -0
- package/src/features/ChatInput/store/initialState.ts +54 -0
- package/src/features/ChatInput/store/selectors.ts +5 -0
- package/src/features/Conversation/components/BackBottom/style.ts +1 -1
- package/src/features/Conversation/components/SkeletonList.tsx +10 -3
- package/src/features/Conversation/components/VirtualizedList/index.tsx +53 -44
- package/src/features/Conversation/components/WideScreenContainer/index.tsx +43 -0
- package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +49 -42
- package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +48 -22
- package/src/features/Portal/Thread/Chat/index.tsx +2 -2
- package/src/features/Portal/Thread/Header/index.tsx +1 -1
- package/src/hooks/useHotkeys/chatScope.ts +5 -3
- package/src/layout/GlobalProvider/Editor.tsx +27 -0
- package/src/layout/GlobalProvider/Locale.tsx +3 -23
- package/src/locales/default/chat.ts +8 -2
- package/src/locales/default/editor.ts +47 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/modelProvider.ts +1 -1
- package/src/services/aiChat.ts +8 -2
- package/src/store/chat/slices/aiChat/actions/__tests__/cancel-functionality.test.ts +107 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +394 -40
- package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +175 -35
- package/src/store/chat/slices/aiChat/initialState.ts +19 -0
- package/src/store/chat/slices/aiChat/selectors.ts +18 -0
- package/src/store/global/action.test.ts +6 -5
- package/src/store/global/actions/__tests__/general.test.ts +6 -6
- package/src/store/global/actions/workspacePane.ts +6 -0
- package/src/store/global/initialState.ts +2 -4
- package/src/store/global/selectors/systemStatus.test.ts +1 -2
- package/src/store/global/selectors/systemStatus.ts +2 -5
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +0 -104
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +0 -40
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +0 -125
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.test.tsx +0 -332
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.tsx +0 -29
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/index.tsx +0 -33
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/Container.tsx +0 -41
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/index.tsx +0 -156
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Send.tsx +0 -33
- package/src/features/ChatInput/Desktop/Header/index.tsx +0 -30
- package/src/features/ChatInput/Desktop/InputArea/index.tsx +0 -143
- package/src/features/ChatInput/Desktop/__tests__/useAutoFocus.test.ts +0 -45
- package/src/features/ChatInput/Desktop/useAutoFocus.ts +0 -13
- package/src/features/ChatInput/useSend.ts +0 -102
- package/src/features/Portal/Thread/Chat/ChatInput/Footer.tsx +0 -90
- package/src/features/Portal/Thread/Chat/ChatInput/TextArea.tsx +0 -30
- package/src/libs/trpc/client/types.ts +0 -18
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/Image.tsx +0 -0
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/index.tsx +0 -0
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/style.ts +0 -0
package/locales/fr-FR/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Ajouter un message AI",
|
72
72
|
"addUser": "Ajouter un message utilisateur",
|
73
|
+
"disclaimer": "L'IA peut également faire des erreurs, veuillez vérifier les informations importantes",
|
74
|
+
"errorMsg": "Échec de l'envoi du message, veuillez vérifier votre connexion réseau et réessayer : {{errorMsg}}",
|
73
75
|
"more": "Plus",
|
74
76
|
"send": "Envoyer",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Appuyez sur <key/> pour envoyer",
|
78
|
+
"sendWithEnter": "Appuyez sur <key/> pour envoyer",
|
77
79
|
"stop": "Arrêter",
|
78
80
|
"warp": "Saut de ligne"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} messages",
|
233
235
|
"title": "Sous-sujet"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Désactiver le mode écran large",
|
239
|
+
"on": "Activer le mode écran large"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Messages de discussion",
|
237
243
|
"historySummary": "Résumé historique",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Réduire",
|
5
|
+
"on": "Développer"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Masquer la barre d'outils de formatage",
|
9
|
+
"on": "Afficher la barre d'outils de formatage"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Erreur : {{message}}",
|
14
|
+
"uploading": "Téléversement du fichier en cours..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Image endommagée"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Modifier le lien",
|
21
|
+
"open": "Ouvrir le lien",
|
22
|
+
"placeholder": "Entrez l'URL du lien",
|
23
|
+
"unlink": "Supprimer le lien"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Supprimer le tableau",
|
27
|
+
"deleteColumn": "Supprimer la colonne",
|
28
|
+
"deleteRow": "Supprimer la ligne",
|
29
|
+
"insertColumnLeft": "Insérer {{count}} colonne(s) à gauche",
|
30
|
+
"insertColumnRight": "Insérer {{count}} colonne(s) à droite",
|
31
|
+
"insertRowAbove": "Insérer {{count}} ligne(s) au-dessus",
|
32
|
+
"insertRowBelow": "Insérer {{count}} ligne(s) en dessous"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Citation",
|
36
|
+
"bold": "Gras",
|
37
|
+
"bulletList": "Liste à puces",
|
38
|
+
"code": "Code en ligne",
|
39
|
+
"codeblock": "Bloc de code",
|
40
|
+
"italic": "Italique",
|
41
|
+
"link": "Lien",
|
42
|
+
"numberList": "Liste numérotée",
|
43
|
+
"strikethrough": "Barré",
|
44
|
+
"table": "Insérer un tableau",
|
45
|
+
"underline": "Souligné"
|
46
|
+
}
|
47
|
+
}
|
package/locales/it-IT/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Aggiungi un messaggio AI",
|
72
72
|
"addUser": "Aggiungi un messaggio utente",
|
73
|
+
"disclaimer": "L'IA può anche commettere errori, si prega di verificare le informazioni importanti",
|
74
|
+
"errorMsg": "Invio del messaggio fallito, controlla la rete e riprova: {{errorMsg}}",
|
73
75
|
"more": "Ulteriori",
|
74
76
|
"send": "Invia",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Premi <key/> per inviare",
|
78
|
+
"sendWithEnter": "Premi <key/> per inviare",
|
77
79
|
"stop": "Ferma",
|
78
80
|
"warp": "A capo"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} messaggi",
|
233
235
|
"title": "Sottoargomento"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Disattiva modalità schermo ampio",
|
239
|
+
"on": "Attiva modalità schermo ampio"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Chat",
|
237
243
|
"historySummary": "Riepilogo storico",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Comprimi",
|
5
|
+
"on": "Espandi"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Nascondi barra degli strumenti di formattazione",
|
9
|
+
"on": "Mostra barra degli strumenti di formattazione"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Errore: {{message}}",
|
14
|
+
"uploading": "Caricamento file in corso..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Immagine danneggiata"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Modifica link",
|
21
|
+
"open": "Apri link",
|
22
|
+
"placeholder": "Inserisci URL del link",
|
23
|
+
"unlink": "Rimuovi link"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Elimina tabella",
|
27
|
+
"deleteColumn": "Elimina colonna",
|
28
|
+
"deleteRow": "Elimina riga",
|
29
|
+
"insertColumnLeft": "Inserisci {{count}} colonne a sinistra",
|
30
|
+
"insertColumnRight": "Inserisci {{count}} colonne a destra",
|
31
|
+
"insertRowAbove": "Inserisci {{count}} righe sopra",
|
32
|
+
"insertRowBelow": "Inserisci {{count}} righe sotto"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Citazione",
|
36
|
+
"bold": "Grassetto",
|
37
|
+
"bulletList": "Elenco puntato",
|
38
|
+
"code": "Codice in linea",
|
39
|
+
"codeblock": "Blocco di codice",
|
40
|
+
"italic": "Corsivo",
|
41
|
+
"link": "Collegamento",
|
42
|
+
"numberList": "Elenco numerato",
|
43
|
+
"strikethrough": "Testo barrato",
|
44
|
+
"table": "Inserisci tabella",
|
45
|
+
"underline": "Sottolineato"
|
46
|
+
}
|
47
|
+
}
|
package/locales/ja-JP/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "AIメッセージを追加",
|
72
72
|
"addUser": "ユーザーメッセージを追加",
|
73
|
+
"disclaimer": "AIも誤りを犯すことがありますので、重要な情報はご確認ください",
|
74
|
+
"errorMsg": "メッセージの送信に失敗しました。ネットワークを確認してから再試行してください: {{errorMsg}}",
|
73
75
|
"more": "もっと",
|
74
76
|
"send": "送信",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "<key/> キーを押して送信",
|
78
|
+
"sendWithEnter": "<key/> キーを押して送信",
|
77
79
|
"stop": "停止",
|
78
80
|
"warp": "改行"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} 件のメッセージ",
|
233
235
|
"title": "サブトピック"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "ワイドスクリーンモードをオフにする",
|
239
|
+
"on": "ワイドスクリーンモードをオンにする"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "チャットメッセージ",
|
237
243
|
"historySummary": "履歴の要約",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "折りたたむ",
|
5
|
+
"on": "展開する"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "書式ツールバーを非表示",
|
9
|
+
"on": "書式ツールバーを表示"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "エラー:{{message}}",
|
14
|
+
"uploading": "ファイルをアップロードしています..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "画像が破損しています"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "リンクを編集",
|
21
|
+
"open": "リンクを開く",
|
22
|
+
"placeholder": "リンクの URL を入力",
|
23
|
+
"unlink": "リンクを解除"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "表を削除",
|
27
|
+
"deleteColumn": "列を削除",
|
28
|
+
"deleteRow": "行を削除",
|
29
|
+
"insertColumnLeft": "左側に {{count}} 列を挿入",
|
30
|
+
"insertColumnRight": "右側に {{count}} 列を挿入",
|
31
|
+
"insertRowAbove": "上に {{count}} 行を挿入",
|
32
|
+
"insertRowBelow": "下に {{count}} 行を挿入"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "引用",
|
36
|
+
"bold": "太字",
|
37
|
+
"bulletList": "番号なしリスト",
|
38
|
+
"code": "インラインコード",
|
39
|
+
"codeblock": "コードブロック",
|
40
|
+
"italic": "斜体",
|
41
|
+
"link": "リンク",
|
42
|
+
"numberList": "番号付きリスト",
|
43
|
+
"strikethrough": "取り消し線",
|
44
|
+
"table": "表を挿入",
|
45
|
+
"underline": "下線"
|
46
|
+
}
|
47
|
+
}
|
package/locales/ko-KR/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "AI 메시지 추가",
|
72
72
|
"addUser": "사용자 메시지 추가",
|
73
|
+
"disclaimer": "AI도 실수를 할 수 있으니 중요한 정보는 꼭 확인하세요",
|
74
|
+
"errorMsg": "메시지 전송에 실패했습니다. 네트워크를 확인한 후 다시 시도해 주세요: {{errorMsg}}",
|
73
75
|
"more": "더 많은",
|
74
76
|
"send": "전송",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "<key/> 키를 눌러 전송",
|
78
|
+
"sendWithEnter": "<key/> 키를 눌러 전송",
|
77
79
|
"stop": "중지",
|
78
80
|
"warp": "줄바꿈"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}}개의 메시지",
|
233
235
|
"title": "하위 주제"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "와이드 스크린 모드 끄기",
|
239
|
+
"on": "와이드 스크린 모드 켜기"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "채팅 메시지",
|
237
243
|
"historySummary": "역사 요약",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "접기",
|
5
|
+
"on": "펼치기"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "서식 도구 모음 숨기기",
|
9
|
+
"on": "서식 도구 모음 표시"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "오류: {{message}}",
|
14
|
+
"uploading": "파일 업로드 중..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "이미지가 손상되었습니다"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "링크 편집",
|
21
|
+
"open": "링크 열기",
|
22
|
+
"placeholder": "링크 URL 입력",
|
23
|
+
"unlink": "링크 제거"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "테이블 삭제",
|
27
|
+
"deleteColumn": "열 삭제",
|
28
|
+
"deleteRow": "행 삭제",
|
29
|
+
"insertColumnLeft": "왼쪽에 {{count}}개의 열 삽입",
|
30
|
+
"insertColumnRight": "오른쪽에 {{count}}개의 열 삽입",
|
31
|
+
"insertRowAbove": "위에 {{count}}개의 행 삽입",
|
32
|
+
"insertRowBelow": "아래에 {{count}}개의 행 삽입"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "인용",
|
36
|
+
"bold": "굵게",
|
37
|
+
"bulletList": "순서 없는 목록",
|
38
|
+
"code": "인라인 코드",
|
39
|
+
"codeblock": "코드 블록",
|
40
|
+
"italic": "기울임꼴",
|
41
|
+
"link": "링크",
|
42
|
+
"numberList": "번호 매긴 목록",
|
43
|
+
"strikethrough": "취소선",
|
44
|
+
"table": "표 삽입",
|
45
|
+
"underline": "밑줄"
|
46
|
+
}
|
47
|
+
}
|
@@ -1505,7 +1505,9 @@
|
|
1505
1505
|
"gpt-4.1-nano": {
|
1506
1506
|
"description": "GPT-4.1 mini는 지능, 속도 및 비용 간의 균형을 제공하여 많은 사용 사례에서 매력적인 모델이 됩니다."
|
1507
1507
|
},
|
1508
|
-
"gpt-4.5-preview":
|
1508
|
+
"gpt-4.5-preview": {
|
1509
|
+
"description": "GPT-4.5-preview는 최신 범용 모델로, 폭넓은 세계 지식과 사용자 의도에 대한 향상된 이해를 갖추고 있어 창의적 과제와 에이전트 계획에 능숙합니다. 이 모델의 지식은 2023년 10월까지입니다."
|
1510
|
+
},
|
1509
1511
|
"gpt-4o": {
|
1510
1512
|
"description": "ChatGPT-4o는 동적 모델로, 최신 버전을 유지하기 위해 실시간으로 업데이트됩니다. 강력한 언어 이해 및 생성 능력을 결합하여 고객 서비스, 교육 및 기술 지원을 포함한 대규모 응용 프로그램에 적합합니다."
|
1511
1513
|
},
|
package/locales/nl-NL/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Voeg een AI-bericht toe",
|
72
72
|
"addUser": "Voeg een gebruikersbericht toe",
|
73
|
+
"disclaimer": "AI kan ook fouten maken, controleer belangrijke informatie alstublieft",
|
74
|
+
"errorMsg": "Bericht verzenden mislukt, controleer uw netwerk en probeer het opnieuw: {{errorMsg}}",
|
73
75
|
"more": "Meer",
|
74
76
|
"send": "Verzenden",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Druk op <key/> om te verzenden",
|
78
|
+
"sendWithEnter": "Druk op <key/> om te verzenden",
|
77
79
|
"stop": "Stoppen",
|
78
80
|
"warp": "Nieuwe regel"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} berichten",
|
233
235
|
"title": "Subonderwerp"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Schakel breedbeeldmodus uit",
|
239
|
+
"on": "Schakel breedbeeldmodus in"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Chats",
|
237
243
|
"historySummary": "Geschiedenis samenvatting",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Inklappen",
|
5
|
+
"on": "Uitklappen"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Verberg opmaakwerkbalk",
|
9
|
+
"on": "Toon opmaakwerkbalk"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Fout: {{message}}",
|
14
|
+
"uploading": "Bestand wordt geüpload..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Afbeelding beschadigd"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Link bewerken",
|
21
|
+
"open": "Link openen",
|
22
|
+
"placeholder": "Voer de URL van de link in",
|
23
|
+
"unlink": "Link verwijderen"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Tabel verwijderen",
|
27
|
+
"deleteColumn": "Kolom verwijderen",
|
28
|
+
"deleteRow": "Rij verwijderen",
|
29
|
+
"insertColumnLeft": "Voeg {{count}} kolommen links in",
|
30
|
+
"insertColumnRight": "Voeg {{count}} kolommen rechts in",
|
31
|
+
"insertRowAbove": "Voeg {{count}} rijen hierboven in",
|
32
|
+
"insertRowBelow": "Voeg {{count}} rijen hieronder in"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Citaat",
|
36
|
+
"bold": "Vet",
|
37
|
+
"bulletList": "Opsomming",
|
38
|
+
"code": "Inlinecode",
|
39
|
+
"codeblock": "Codeblok",
|
40
|
+
"italic": "Cursief",
|
41
|
+
"link": "Link",
|
42
|
+
"numberList": "Genummerde lijst",
|
43
|
+
"strikethrough": "Doorhalen",
|
44
|
+
"table": "Tabel invoegen",
|
45
|
+
"underline": "Onderstrepen"
|
46
|
+
}
|
47
|
+
}
|
@@ -2663,7 +2663,9 @@
|
|
2663
2663
|
"step-r1-v-mini": {
|
2664
2664
|
"description": "Dit model is een krachtig redeneringsmodel met sterke beeldbegripcapaciteiten, in staat om beeld- en tekstinformatie te verwerken en tekstinhoud te genereren na diep nadenken. Dit model presteert uitstekend in visuele redenering en heeft eersteklas wiskundige, code- en tekstredeneringscapaciteiten. De contextlengte is 100k."
|
2665
2665
|
},
|
2666
|
-
"stepfun-ai/step3":
|
2666
|
+
"stepfun-ai/step3": {
|
2667
|
+
"description": "Step3 is een geavanceerd multimodaal redeneermodel uitgebracht door StepFun (阶跃星辰). Het is gebouwd op een Mixture-of-Experts (MoE)-architectuur met in totaal 321 miljard (321B) parameters en 38 miljard (38B) actieve parameters. Het model heeft een end-to-end ontwerp dat gericht is op het minimaliseren van decodeerkosten, terwijl het topniveau-prestaties levert bij vision-language redenering. Dankzij de synergie tussen Multi-Matrix Factorized Attention (MFA) en Attention-FFN Decoupling (AFD) behoudt Step3 uitstekende efficiëntie zowel op high-end als low-end accelerators. Tijdens de voortraining verwerkte Step3 meer dan 20 biljoen (20T) teksttokens en 4 biljoen (4T) gecombineerde beeld-tekst-tokens, en bestrijkt daarmee meer dan tien talen. Het model behaalt leidende resultaten onder open-sourcemodellen op verschillende benchmarks, waaronder wiskunde, code en multimodaal."
|
2668
|
+
},
|
2667
2669
|
"taichu_llm": {
|
2668
2670
|
"description": "Het Zido Tai Chu-taalmodel heeft een sterke taalbegripcapaciteit en kan tekstcreatie, kennisvragen, codeprogrammering, wiskundige berekeningen, logische redenering, sentimentanalyse, tekstsamenvattingen en meer aan. Het combineert innovatief grote data voortraining met rijke kennis uit meerdere bronnen, door algoritmische technologie continu te verfijnen en voortdurend nieuwe kennis op te nemen uit enorme tekstdata op het gebied van vocabulaire, structuur, grammatica en semantiek, waardoor de modelprestaties voortdurend evolueren. Het biedt gebruikers gemakkelijkere informatie en diensten en een meer intelligente ervaring."
|
2669
2671
|
},
|
package/locales/pl-PL/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Dodaj wiadomość AI",
|
72
72
|
"addUser": "Dodaj wiadomość użytkownika",
|
73
|
+
"disclaimer": "AI również może popełniać błędy, proszę sprawdzić ważne informacje",
|
74
|
+
"errorMsg": "Wysyłanie wiadomości nie powiodło się, sprawdź połączenie sieciowe i spróbuj ponownie: {{errorMsg}}",
|
73
75
|
"more": "więcej",
|
74
76
|
"send": "Wyślij",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Naciśnij <key/>, aby wysłać",
|
78
|
+
"sendWithEnter": "Naciśnij <key/>, aby wysłać",
|
77
79
|
"stop": "Zatrzymaj",
|
78
80
|
"warp": "Złamanie wiersza"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} wiadomości",
|
233
235
|
"title": "Podwątek"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Wyłącz tryb szerokiego ekranu",
|
239
|
+
"on": "Włącz tryb szerokiego ekranu"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Rozmowy",
|
237
243
|
"historySummary": "Podsumowanie historii",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Zwiń",
|
5
|
+
"on": "Rozwiń"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Ukryj pasek narzędzi formatowania",
|
9
|
+
"on": "Pokaż pasek narzędzi formatowania"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Błąd: {{message}}",
|
14
|
+
"uploading": "Przesyłanie pliku..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Obraz uszkodzony"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Edytuj link",
|
21
|
+
"open": "Otwórz link",
|
22
|
+
"placeholder": "Wpisz adres URL linku",
|
23
|
+
"unlink": "Usuń link"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Usuń tabelę",
|
27
|
+
"deleteColumn": "Usuń kolumnę",
|
28
|
+
"deleteRow": "Usuń wiersz",
|
29
|
+
"insertColumnLeft": "Wstaw {{count}} kolumn po lewej",
|
30
|
+
"insertColumnRight": "Wstaw {{count}} kolumn po prawej",
|
31
|
+
"insertRowAbove": "Wstaw {{count}} wierszy powyżej",
|
32
|
+
"insertRowBelow": "Wstaw {{count}} wierszy poniżej"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Cytat",
|
36
|
+
"bold": "Pogrubienie",
|
37
|
+
"bulletList": "Lista punktowana",
|
38
|
+
"code": "Kod w linii",
|
39
|
+
"codeblock": "Blok kodu",
|
40
|
+
"italic": "Kursywa",
|
41
|
+
"link": "Link",
|
42
|
+
"numberList": "Lista numerowana",
|
43
|
+
"strikethrough": "Przekreślenie",
|
44
|
+
"table": "Wstaw tabelę",
|
45
|
+
"underline": "Podkreślenie"
|
46
|
+
}
|
47
|
+
}
|
package/locales/pt-BR/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Adicionar uma mensagem de IA",
|
72
72
|
"addUser": "Adicionar uma mensagem de usuário",
|
73
|
+
"disclaimer": "A IA também pode cometer erros, por favor verifique as informações importantes",
|
74
|
+
"errorMsg": "Falha ao enviar a mensagem, verifique a rede e tente novamente: {{errorMsg}}",
|
73
75
|
"more": "mais",
|
74
76
|
"send": "Enviar",
|
75
|
-
"sendWithCmdEnter": "Pressione
|
76
|
-
"sendWithEnter": "Pressione
|
77
|
+
"sendWithCmdEnter": "Pressione <key/> para enviar",
|
78
|
+
"sendWithEnter": "Pressione <key/> para enviar",
|
77
79
|
"stop": "Parar",
|
78
80
|
"warp": "Quebrar linha"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} mensagens",
|
233
235
|
"title": "Subtópico"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Desativar modo de tela ampla",
|
239
|
+
"on": "Ativar modo de tela ampla"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Mensagens de bate-papo",
|
237
243
|
"historySummary": "Resumo Histórico",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Recolher",
|
5
|
+
"on": "Expandir"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Ocultar barra de formatação",
|
9
|
+
"on": "Mostrar barra de formatação"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Erro: {{message}}",
|
14
|
+
"uploading": "Enviando arquivo..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Imagem corrompida"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Editar link",
|
21
|
+
"open": "Abrir link",
|
22
|
+
"placeholder": "Digite a URL do link",
|
23
|
+
"unlink": "Remover link"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Excluir tabela",
|
27
|
+
"deleteColumn": "Excluir coluna",
|
28
|
+
"deleteRow": "Excluir linha",
|
29
|
+
"insertColumnLeft": "Inserir {{count}} coluna(s) à esquerda",
|
30
|
+
"insertColumnRight": "Inserir {{count}} coluna(s) à direita",
|
31
|
+
"insertRowAbove": "Inserir {{count}} linha(s) acima",
|
32
|
+
"insertRowBelow": "Inserir {{count}} linha(s) abaixo"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Citação",
|
36
|
+
"bold": "Negrito",
|
37
|
+
"bulletList": "Lista não ordenada",
|
38
|
+
"code": "Código inline",
|
39
|
+
"codeblock": "Bloco de código",
|
40
|
+
"italic": "Itálico",
|
41
|
+
"link": "Link",
|
42
|
+
"numberList": "Lista numerada",
|
43
|
+
"strikethrough": "Tachado",
|
44
|
+
"table": "Inserir tabela",
|
45
|
+
"underline": "Sublinhado"
|
46
|
+
}
|
47
|
+
}
|
package/locales/ru-RU/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Добавить сообщение AI",
|
72
72
|
"addUser": "Добавить сообщение пользователя",
|
73
|
+
"disclaimer": "ИИ также может ошибаться, пожалуйста, проверяйте важную информацию",
|
74
|
+
"errorMsg": "Не удалось отправить сообщение, проверьте подключение к сети и попробуйте снова: {{errorMsg}}",
|
73
75
|
"more": "больше",
|
74
76
|
"send": "Отправить",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Нажмите <key/> для отправки",
|
78
|
+
"sendWithEnter": "Нажмите <key/> для отправки",
|
77
79
|
"stop": "Остановить",
|
78
80
|
"warp": "Перенос строки"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} сообщений",
|
233
235
|
"title": "Подтема"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Отключить режим широкого экрана",
|
239
|
+
"on": "Включить режим широкого экрана"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Чаты",
|
237
243
|
"historySummary": "Историческое резюме",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Свернуть",
|
5
|
+
"on": "Развернуть"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Скрыть панель форматирования",
|
9
|
+
"on": "Показать панель форматирования"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Ошибка: {{message}}",
|
14
|
+
"uploading": "Загрузка файла..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Изображение повреждено"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Редактировать ссылку",
|
21
|
+
"open": "Открыть ссылку",
|
22
|
+
"placeholder": "Введите URL ссылки",
|
23
|
+
"unlink": "Удалить ссылку"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Удалить таблицу",
|
27
|
+
"deleteColumn": "Удалить столбец",
|
28
|
+
"deleteRow": "Удалить строку",
|
29
|
+
"insertColumnLeft": "{count, plural, one {Вставить # столбец слева} few {Вставить # столбца слева} many {Вставить # столбцов слева} other {Вставить # столбца слева}}",
|
30
|
+
"insertColumnRight": "{count, plural, one {Вставить # столбец справа} few {Вставить # столбца справа} many {Вставить # столбцов справа} other {Вставить # столбца справа}}",
|
31
|
+
"insertRowAbove": "{count, plural, one {Вставить # строку сверху} few {Вставить # строки сверху} many {Вставить # строк сверху} other {Вставить # строки сверху}}",
|
32
|
+
"insertRowBelow": "{count, plural, one {Вставить # строку снизу} few {Вставить # строки снизу} many {Вставить # строк снизу} other {Вставить # строки снизу}}"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Цитата",
|
36
|
+
"bold": "Жирный",
|
37
|
+
"bulletList": "Маркированный список",
|
38
|
+
"code": "Встроенный код",
|
39
|
+
"codeblock": "Блок кода",
|
40
|
+
"italic": "Курсив",
|
41
|
+
"link": "Ссылка",
|
42
|
+
"numberList": "Нумерованный список",
|
43
|
+
"strikethrough": "Зачёркнутый",
|
44
|
+
"table": "Вставить таблицу",
|
45
|
+
"underline": "Подчёркнутый"
|
46
|
+
}
|
47
|
+
}
|
package/locales/tr-TR/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Bir AI mesajı ekleyin",
|
72
72
|
"addUser": "Bir kullanıcı mesajı ekleyin",
|
73
|
+
"disclaimer": "Yapay zeka da hata yapabilir, lütfen önemli bilgileri kontrol edin",
|
74
|
+
"errorMsg": "Mesaj gönderilemedi, lütfen ağı kontrol edip tekrar deneyin: {{errorMsg}}",
|
73
75
|
"more": "Daha fazla",
|
74
76
|
"send": "Gönder",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "<key/> tuşuna basarak gönder",
|
78
|
+
"sendWithEnter": "<key/> tuşuna basarak gönder",
|
77
79
|
"stop": "Dur",
|
78
80
|
"warp": "Satır atla"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} mesaj",
|
233
235
|
"title": "Alt konu"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Geniş ekran modunu kapat",
|
239
|
+
"on": "Geniş ekran modunu aç"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Sohbetler",
|
237
243
|
"historySummary": "Tarih Özeti",
|