@lobehub/chat 0.141.1 → 0.142.0

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.
Files changed (86) hide show
  1. package/.env.example +6 -0
  2. package/CHANGELOG.md +50 -0
  3. package/Dockerfile +3 -0
  4. package/README.md +19 -15
  5. package/README.zh-CN.md +16 -15
  6. package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +10 -0
  7. package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -0
  8. package/docs/usage/providers/ollama/qwen.mdx +47 -0
  9. package/docs/usage/providers/ollama/qwen.zh-CN.mdx +45 -0
  10. package/locales/ar/common.json +1 -0
  11. package/locales/ar/error.json +7 -1
  12. package/locales/ar/setting.json +8 -0
  13. package/locales/de-DE/common.json +1 -0
  14. package/locales/de-DE/error.json +7 -1
  15. package/locales/de-DE/setting.json +8 -0
  16. package/locales/en-US/common.json +1 -0
  17. package/locales/en-US/error.json +7 -1
  18. package/locales/en-US/setting.json +8 -0
  19. package/locales/es-ES/common.json +1 -0
  20. package/locales/es-ES/error.json +7 -1
  21. package/locales/es-ES/setting.json +8 -0
  22. package/locales/fr-FR/common.json +1 -0
  23. package/locales/fr-FR/error.json +7 -1
  24. package/locales/fr-FR/setting.json +8 -0
  25. package/locales/it-IT/common.json +1 -0
  26. package/locales/it-IT/error.json +7 -1
  27. package/locales/it-IT/setting.json +30 -24
  28. package/locales/ja-JP/common.json +1 -0
  29. package/locales/ja-JP/error.json +7 -1
  30. package/locales/ja-JP/setting.json +30 -24
  31. package/locales/ko-KR/common.json +1 -0
  32. package/locales/ko-KR/error.json +7 -1
  33. package/locales/ko-KR/setting.json +8 -0
  34. package/locales/nl-NL/common.json +1 -0
  35. package/locales/nl-NL/error.json +7 -1
  36. package/locales/nl-NL/setting.json +30 -24
  37. package/locales/pl-PL/common.json +1 -0
  38. package/locales/pl-PL/error.json +7 -1
  39. package/locales/pl-PL/setting.json +8 -0
  40. package/locales/pt-BR/common.json +1 -0
  41. package/locales/pt-BR/error.json +7 -1
  42. package/locales/pt-BR/setting.json +8 -0
  43. package/locales/ru-RU/common.json +1 -0
  44. package/locales/ru-RU/error.json +7 -1
  45. package/locales/ru-RU/setting.json +8 -0
  46. package/locales/tr-TR/common.json +1 -0
  47. package/locales/tr-TR/error.json +7 -1
  48. package/locales/tr-TR/setting.json +8 -0
  49. package/locales/vi-VN/common.json +1 -0
  50. package/locales/vi-VN/error.json +7 -1
  51. package/locales/vi-VN/setting.json +8 -0
  52. package/locales/zh-CN/common.json +1 -0
  53. package/locales/zh-CN/error.json +7 -1
  54. package/locales/zh-CN/setting.json +8 -0
  55. package/locales/zh-TW/common.json +1 -0
  56. package/locales/zh-TW/error.json +7 -1
  57. package/locales/zh-TW/setting.json +8 -0
  58. package/package.json +1 -1
  59. package/src/app/api/chat/[provider]/agentRuntime.ts +15 -2
  60. package/src/app/api/config/route.ts +2 -0
  61. package/src/app/api/errorResponse.ts +3 -0
  62. package/src/app/chat/(desktop)/features/SideBar/index.tsx +0 -1
  63. package/src/app/settings/llm/Google/index.tsx +10 -3
  64. package/src/app/settings/llm/ZeroOne/index.tsx +52 -0
  65. package/src/app/settings/llm/index.tsx +2 -0
  66. package/src/app/settings/sync/components/SystemIcon.tsx +11 -6
  67. package/src/components/ModelIcon/index.tsx +2 -0
  68. package/src/components/ModelProviderIcon/index.tsx +5 -0
  69. package/src/components/ModelTag/ModelIcon.tsx +2 -0
  70. package/src/config/modelProviders/index.ts +3 -0
  71. package/src/config/modelProviders/zeroone.ts +28 -0
  72. package/src/config/server/provider.ts +10 -2
  73. package/src/const/settings.ts +4 -0
  74. package/src/features/Conversation/Error/APIKeyForm/ZeroOne.tsx +60 -0
  75. package/src/features/Conversation/Error/APIKeyForm/index.tsx +6 -1
  76. package/src/features/Conversation/Error/index.tsx +1 -0
  77. package/src/libs/agent-runtime/error.ts +4 -1
  78. package/src/libs/agent-runtime/index.ts +1 -0
  79. package/src/libs/agent-runtime/types/type.ts +1 -0
  80. package/src/libs/agent-runtime/zeroone/index.ts +78 -0
  81. package/src/locales/default/common.ts +1 -0
  82. package/src/locales/default/error.ts +8 -1
  83. package/src/locales/default/setting.ts +8 -0
  84. package/src/services/_auth.ts +5 -1
  85. package/src/store/global/slices/settings/selectors/modelProvider.ts +11 -2
  86. package/src/types/settings/modelProvider.ts +7 -0
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "La configuration d'Ollama n'est pas valide, veuillez vérifier la configuration d'Ollama et réessayer",
51
51
  "InvalidOpenRouterAPIKey": "La clé d'API OpenRouter est incorrecte ou manquante. Veuillez vérifier la clé d'API OpenRouter et réessayer.",
52
52
  "InvalidPerplexityAPIKey": "La clé API Perplexity est incorrecte ou vide. Veuillez vérifier la clé API Perplexity et réessayer.",
53
+ "InvalidZeroOneAPIKey": "零一万物 API Key 不正确或为空,请检查零一万物 API Key 后重试",
53
54
  "InvalidZhipuAPIKey": "Clé API Zhipu incorrecte ou vide, veuillez vérifier la clé API Zhipu et réessayer",
54
55
  "LocationNotSupportError": "Désolé, votre emplacement actuel ne prend pas en charge ce service de modèle, peut-être en raison de restrictions géographiques ou de services non disponibles. Veuillez vérifier si votre emplacement actuel prend en charge ce service ou essayer avec une autre localisation.",
55
56
  "MistralBizError": "Erreur de service Mistral AI. Veuillez vérifier les informations ci-dessous ou réessayer.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Désolé, l'initialisation du client OpenAPI a échoué. Veuillez vérifier les informations de configuration d'OpenAPI.",
73
74
  "PluginServerError": "Erreur de réponse du serveur du plugin. Veuillez vérifier le fichier de description du plugin, la configuration du plugin ou la mise en œuvre côté serveur en fonction des informations d'erreur ci-dessous",
74
75
  "PluginSettingsInvalid": "Ce plugin doit être correctement configuré avant de pouvoir être utilisé. Veuillez vérifier votre configuration",
76
+ "ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
75
77
  "ZhipuBizError": "Erreur lors de la demande de service Zhipu, veuillez vérifier les informations ci-dessous ou réessayer"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Entrez votre clé API Perplexity pour commencer la session. L'application ne conservera pas votre clé API.",
121
123
  "title": "Utiliser une clé API Perplexity personnalisée"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "输入你的零一万物 API Key 即可开始会话。应用不会记录你的 API Key",
127
+ "title": "使用自定义零一万物 API Key"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Entrez votre clé API Zhipu pour commencer la session. L'application ne conservera pas votre clé API",
125
131
  "title": "Utiliser une clé API Zhipu personnalisée"
@@ -150,4 +156,4 @@
150
156
  "password": "Mot de passe"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "Clé API"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZéroUn Tout-en-un",
206
+ "token": {
207
+ "desc": "Entrez la clé API de 01.AI ZéroUn Tout-en-un",
208
+ "placeholder": "Clé API 01.AI ZéroUn Tout-en-un",
209
+ "title": "Clé API"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01. Intelligenza Artificiale ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Nessuna descrizione disponibile",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Configurazione Ollama non valida, controllare la configurazione di Ollama e riprovare",
51
51
  "InvalidOpenRouterAPIKey": "La chiave API di OpenRouter non è valida o è vuota. Si prega di controllare la chiave API di OpenRouter e riprovare.",
52
52
  "InvalidPerplexityAPIKey": "Chiave API Perplexity non valida o vuota, controlla la chiave API Perplexity e riprova",
53
+ "InvalidZeroOneAPIKey": "La chiave API ZeroOne non è corretta o è vuota, si prega di controllare la chiave API ZeroOne e riprovare",
53
54
  "InvalidZhipuAPIKey": "Chiave API Zhipu non corretta o vuota, controlla la chiave API Zhipu e riprova",
54
55
  "LocationNotSupportError": "Spiacenti, la tua posizione attuale non supporta questo servizio modello, potrebbe essere a causa di restrizioni geografiche o servizi non attivati. Verifica se la posizione attuale supporta l'uso di questo servizio o prova a utilizzare un'altra posizione.",
55
56
  "MistralBizError": "Errore di richiesta del servizio Mistral AI. Si prega di controllare le informazioni seguenti o riprovare.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Spiacenti, inizializzazione fallita del client OpenAPI. Verifica che le informazioni di configurazione di OpenAPI siano corrette",
73
74
  "PluginServerError": "Errore nella risposta del server del plugin. Verifica il file descrittivo del plugin, la configurazione del plugin o l'implementazione del server",
74
75
  "PluginSettingsInvalid": "Il plugin deve essere configurato correttamente prima di poter essere utilizzato. Verifica che la tua configurazione sia corretta",
76
+ "ZeroOneBizError": "Si è verificato un errore nel servizio ZeroOneBiz, si prega di controllare le informazioni seguenti o riprovare",
75
77
  "ZhipuBizError": "Errore nella richiesta del servizio Zhipu, controlla le informazioni seguenti o riprova"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Inserisci la tua chiave API Perplexity per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
121
123
  "title": "Utilizza la tua chiave API Perplexity personalizzata"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "Inserisci la tua chiave API ZeroOne per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
127
+ "title": "Usa una chiave API ZeroOne personalizzata"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Inserisci la tua chiave API Zhipu per iniziare la sessione. L'applicazione non memorizzerà la tua chiave API",
125
131
  "title": "Utilizza la chiave API Zhipu personalizzata"
@@ -150,4 +156,4 @@
150
156
  "password": "Password"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "Chiave API"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne万物",
206
+ "token": {
207
+ "desc": "填入01.AI ZeroOne万物的API密钥",
208
+ "placeholder": "01.AI ZeroOne万物API密钥",
209
+ "title": "API密钥"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -451,38 +459,36 @@
451
459
  "unknownBrowser": "Browser sconosciuto",
452
460
  "unknownOS": "Sistema operativo sconosciuto"
453
461
  },
454
- "tab": {
455
- "experiment": "Esperimento",
456
- "sync": "Sincronizzazione cloud"
457
- },
458
462
  "warning": {
459
- "message": "Questa funzione è attualmente sperimentale e potrebbe comportare comportamenti imprevisti o instabili. In caso di problemi, invia tempestivamente un feedback.",
460
- "webrtc": {
461
- "channelName": {
462
- "desc": "WebRTC utilizzerà questo nome per creare un canale di sincronizzazione. Assicurati che il nome del canale sia univoco",
463
- "placeholder": "Inserisci il nome del canale di sincronizzazione",
464
- "shuffle": "Genera casuale",
465
- "title": "Nome del canale di sincronizzazione"
466
- },
467
- "channelPassword": {
468
- "desc": "Aggiungi una password per garantire la privacy del canale. Solo con la password corretta i dispositivi potranno unirsi al canale",
469
- "placeholder": "Inserisci la password del canale di sincronizzazione",
470
- "title": "Password del canale di sincronizzazione"
471
- },
472
- "desc": "Comunicazione dati in tempo reale e punto-punto. I dispositivi devono essere online contemporaneamente per sincronizzarsi",
473
- "enabled": {
474
- "invalid": "Inserisci prima il nome del canale di sincronizzazione per abilitare",
475
- "title": "Abilita la sincronizzazione"
476
- },
477
- "title": "Sincronizzazione WebRTC"
478
- }
463
+ "message": "Questa funzione è attualmente sperimentale e potrebbe comportare comportamenti imprevisti o instabili. In caso di problemi, invia tempestivamente un feedback."
464
+ },
465
+ "webrtc": {
466
+ "channelName": {
467
+ "desc": "WebRTC将使用此名称创建同步频道,请确保频道名称唯一",
468
+ "placeholder": "请输入同步频道名称",
469
+ "shuffle": "随机生成",
470
+ "title": "同步频道名称"
471
+ },
472
+ "channelPassword": {
473
+ "desc": "添加密码以确保频道私密性,只有密码正确时,设备才能加入频道",
474
+ "placeholder": "请输入同步频道密码",
475
+ "title": "同步频道密码"
476
+ },
477
+ "desc": "实时、点对点的数据通信,需要设备同时在线才能同步",
478
+ "enabled": {
479
+ "invalid": "请填写同步频道名称后再开启",
480
+ "title": "开启同步"
481
+ },
482
+ "title": "WebRTC同步"
479
483
  }
480
484
  },
481
485
  "tab": {
482
486
  "about": "Informazioni",
483
487
  "agent": "Assistente predefinito",
484
488
  "common": "Impostazioni comuni",
489
+ "experiment": "实验",
485
490
  "llm": "Modello linguistico",
491
+ "sync": "云端同步",
486
492
  "tts": "Servizio vocale"
487
493
  },
488
494
  "tools": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity AI",
110
+ "zeroone": "01.AI ゼロワン万物",
110
111
  "zhipu": "智譜AI"
111
112
  },
112
113
  "noDescription": "説明はありません",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Ollamaの設定が正しくありません。Ollamaの設定を確認してからもう一度お試しください",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API キーが正しくないか空です。OpenRouter API キーを確認してもう一度お試しください。",
52
52
  "InvalidPerplexityAPIKey": "Perplexity APIキーが正しくないか空です。Perplexity APIキーを確認してもう一度お試しください",
53
+ "InvalidZeroOneAPIKey": "ZeroOne APIキーが正しくないか空です。ZeroOne APIキーを確認して再試行してください。",
53
54
  "InvalidZhipuAPIKey": "Zhipu APIキーが正しくないか空です。Zhipu APIキーを確認してから再試行してください。",
54
55
  "LocationNotSupportError": "申し訳ありませんが、お住まいの地域ではこのモデルサービスをサポートしていません。地域制限またはサービスが利用できない可能性があります。現在の位置がこのサービスをサポートしているかどうかを確認するか、他の位置情報を使用してみてください。",
55
56
  "MistralBizError": "Mistral AI サービスのリクエストでエラーが発生しました。以下の情報を確認して再試行してください。",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "申し訳ありませんが、OpenAPIクライアントの初期化に失敗しました。OpenAPIの設定情報を確認してください。",
73
74
  "PluginServerError": "プラグインサーバーのリクエストエラーが発生しました。以下のエラーメッセージを参考に、プラグインのマニフェストファイル、設定、サーバー実装を確認してください",
74
75
  "PluginSettingsInvalid": "このプラグインを使用するには、正しい設定が必要です。設定が正しいかどうか確認してください",
76
+ "ZeroOneBizError": "リクエストがZeroOneサービスでエラーが発生しました。以下の情報を確認して再試行してください。",
75
77
  "ZhipuBizError": "Zhipuサービスのリクエストでエラーが発生しました。以下の情報に基づいてトラブルシューティングを行うか、再試行してください。"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Perplexity APIキーを入力して会話を開始します。アプリはAPIキーを記録しません",
121
123
  "title": "カスタムPerplexity APIキーを使用"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "カスタムのZeroOne APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
127
+ "title": "カスタムZeroOne APIキーの使用"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Zhipu APIキーを入力してセッションを開始します。アプリはAPIキーを記録しません。",
125
131
  "title": "カスタムZhipu APIキーを使用"
@@ -150,4 +156,4 @@
150
156
  "password": "パスワード"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "API キー"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI 零一万物",
206
+ "token": {
207
+ "desc": "填入来自 01.AI 零一万物的 API Key",
208
+ "placeholder": "01.AI 零一万物 API Key",
209
+ "title": "API Key"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -451,38 +459,36 @@
451
459
  "unknownBrowser": "不明なブラウザ",
452
460
  "unknownOS": "不明なOS"
453
461
  },
454
- "tab": {
455
- "experiment": "実験",
456
- "sync": "クラウド同期"
457
- },
458
462
  "warning": {
459
- "message": "この機能は現在実験的なものであり、予期しない不安定な状況が発生する可能性があります。問題が発生した場合はフィードバックを提出してください。",
460
- "webrtc": {
461
- "channelName": {
462
- "desc": "WebRTC はこの名前で同期チャネルを作成します。チャネル名が一意であることを確認してください。",
463
- "placeholder": "同期チャネル名を入力",
464
- "shuffle": "ランダム生成",
465
- "title": "同期チャネル名"
466
- },
467
- "channelPassword": {
468
- "desc": "チャネルのプライバシーを保護するためにパスワードを追加し、デバイスがチャネルに参加できるのはパスワードが正しい場合のみです。",
469
- "placeholder": "同期チャネルのパスワードを入力",
470
- "title": "同期チャネルのパスワード"
471
- },
472
- "desc": "リアルタイムでピアツーピアのデータ通信であり、デバイスが同時にオンラインである必要があります。",
473
- "enabled": {
474
- "invalid": "同期チャネル名を入力してから有効にしてください",
475
- "title": "同期を有効にする"
476
- },
477
- "title": "WebRTC 同期"
478
- }
463
+ "message": "この機能は現在実験的なものであり、予期しない不安定な状況が発生する可能性があります。問題が発生した場合はフィードバックを提出してください。"
464
+ },
465
+ "webrtc": {
466
+ "channelName": {
467
+ "desc": "WebRTC 将使用此名创建同步频道,确保频道名称唯一",
468
+ "placeholder": "请输入同步频道名称",
469
+ "shuffle": "随机生成",
470
+ "title": "同步频道名称"
471
+ },
472
+ "channelPassword": {
473
+ "desc": "添加密码确保频道私密性,只有密码正确时,设备才可加入频道",
474
+ "placeholder": "请输入同步频道密码",
475
+ "title": "同步频道密码"
476
+ },
477
+ "desc": "实时、点对点的数据通信,需设备同时在线才可同步",
478
+ "enabled": {
479
+ "invalid": "请填写同步频道名称后再开启",
480
+ "title": "开启同步"
481
+ },
482
+ "title": "WebRTC 同步"
479
483
  }
480
484
  },
481
485
  "tab": {
482
486
  "about": "について",
483
487
  "agent": "デフォルトエージェント",
484
488
  "common": "一般設定",
489
+ "experiment": "実験",
485
490
  "llm": "言語モデル",
491
+ "sync": "クラウド同期",
486
492
  "tts": "音声サービス"
487
493
  },
488
494
  "tools": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "오픈 라우터",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01.AI 제로원",
110
111
  "zhipu": "지푸 AI"
111
112
  },
112
113
  "noDescription": "설명 없음",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Ollama 구성이 잘못되었습니다. Ollama 구성을 확인한 후 다시 시도하십시오.",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API 키가 잘못되었거나 비어 있습니다. OpenRouter API 키를 확인한 후 다시 시도하십시오.",
52
52
  "InvalidPerplexityAPIKey": "Perplexity API 키가 잘못되었거나 비어 있습니다. Perplexity API 키를 확인한 후 다시 시도하십시오.",
53
+ "InvalidZeroOneAPIKey": "잘못된 또는 빈 제로원물 API 키입니다. 제로원물 API 키를 확인하고 다시 시도해주세요.",
53
54
  "InvalidZhipuAPIKey": "잘못된 또는 비어 있는 Zhipu API Key입니다. Zhipu API Key를 확인한 후 다시 시도하십시오.",
54
55
  "LocationNotSupportError": "죄송합니다. 귀하의 현재 위치는 해당 모델 서비스를 지원하지 않습니다. 지역 제한 또는 서비스 미개통으로 인한 것일 수 있습니다. 현재 위치가 해당 서비스를 지원하는지 확인하거나 다른 위치 정보를 사용해 보십시오.",
55
56
  "MistralBizError": "Mistral AI 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "죄송합니다. OpenAPI 클라이언트 초기화에 실패했습니다. OpenAPI 구성 정보를 확인해주세요.",
73
74
  "PluginServerError": "플러그인 서버 요청이 오류로 반환되었습니다. 플러그인 설명 파일, 플러그인 구성 또는 서버 구현을 확인해주세요.",
74
75
  "PluginSettingsInvalid": "플러그인을 사용하려면 올바른 구성이 필요합니다. 구성이 올바른지 확인해주세요.",
76
+ "ZeroOneBizError": "제로원물 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도해주세요.",
75
77
  "ZhipuBizError": "Zhipu 서비스 요청 중 오류가 발생했습니다. 아래 정보를 확인하고 다시 시도하십시오."
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Perplexity API 키를 입력하면 대화를 시작할 수 있습니다. 애플리케이션은 API 키를 기록하지 않습니다.",
121
123
  "title": "사용자 지정 Perplexity API 키 사용"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "제로원물 API 키를 입력하면 세션을 시작할 수 있습니다. 애플리케이션은 API 키를 기록하지 않습니다.",
127
+ "title": "사용자 지정 제로원물 API 키 사용"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Zhipu API Key를 입력하여 세션을 시작합니다. 앱은 귀하의 API Key를 기록하지 않습니다.",
125
131
  "title": "사용자 정의 Zhipu API Key 사용"
@@ -150,4 +156,4 @@
150
156
  "password": "비밀번호"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "API 키"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne 만물",
206
+ "token": {
207
+ "desc": "01.AI ZeroOne의 API 키를 입력하세요",
208
+ "placeholder": "01.AI ZeroOne API 키",
209
+ "title": "API 키"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01.AI ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Geen beschrijving beschikbaar",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Ollama-configuratie is onjuist, controleer de Ollama-configuratie en probeer het opnieuw",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API Key is onjuist of leeg. Controleer de OpenRouter API Key en probeer het opnieuw.",
52
52
  "InvalidPerplexityAPIKey": "Perplexity API Key is onjuist of leeg. Controleer de Perplexity API Key en probeer het opnieuw.",
53
+ "InvalidZeroOneAPIKey": "零一万物 API Key 不正确或为空,请检查零一万物 API Key 后重试",
53
54
  "InvalidZhipuAPIKey": "Incorrect or empty Zhipu API Key, please check the Zhipu API Key and retry",
54
55
  "LocationNotSupportError": "Sorry, your current location does not support this model service, possibly due to regional restrictions or service not being available. Please confirm if the current location supports using this service, or try using other location information.",
55
56
  "MistralBizError": "Er is een fout opgetreden bij het aanroepen van de Mistral AI-service. Controleer de onderstaande informatie of probeer het opnieuw.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Sorry, initialisatie van de OpenAPI-client is mislukt. Controleer of de configuratie van OpenAPI juist is",
73
74
  "PluginServerError": "Fout bij serverrespons voor plug-in. Controleer de foutinformatie hieronder voor uw plug-inbeschrijvingsbestand, plug-inconfiguratie of serverimplementatie",
74
75
  "PluginSettingsInvalid": "Deze plug-in moet correct geconfigureerd zijn voordat deze kan worden gebruikt. Controleer of uw configuratie juist is",
76
+ "ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
75
77
  "ZhipuBizError": "Error requesting Zhipu service, please troubleshoot or retry based on the following information"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Voer uw eigen Perplexity API Key in om het gesprek te starten. De app zal uw API Key niet opslaan.",
121
123
  "title": "Gebruik een aangepaste Perplexity API Key"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "输入你的零一万物 API Key 即可开始会话。应用不会记录你的 API Key",
127
+ "title": "使用自定义零一万物 API Key"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Enter your Zhipu API Key to start the session. The app will not record your API Key",
125
131
  "title": "Use custom Zhipu API Key"
@@ -150,4 +156,4 @@
150
156
  "password": "Password"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "API-sleutel"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI 零一万物",
206
+ "token": {
207
+ "desc": "填入来自 01.AI 零一万物的 API 密钥",
208
+ "placeholder": "01.AI 零一万物 API 密钥",
209
+ "title": "API 密钥"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -451,38 +459,36 @@
451
459
  "unknownBrowser": "Onbekende browser",
452
460
  "unknownOS": "Onbekend besturingssysteem"
453
461
  },
454
- "tab": {
455
- "experiment": "Experiment",
456
- "sync": "Cloudsynchronisatie"
457
- },
458
462
  "warning": {
459
- "message": "Deze functie is momenteel experimenteel en kan onverwachte of onstabiele situaties veroorzaken. Als u problemen ondervindt, geef dan tijdig feedback.",
460
- "webrtc": {
461
- "channelName": {
462
- "desc": "WebRTC zal dit gebruiken om een synchronisatiekanaal te maken. Zorg ervoor dat de kanaalnaam uniek is",
463
- "placeholder": "Voer de synchronisatiekanaalnaam in",
464
- "shuffle": "Willekeurig genereren",
465
- "title": "Synchronisatiekanaalnaam"
466
- },
467
- "channelPassword": {
468
- "desc": "Voeg een wachtwoord toe om de privacy van het kanaal te waarborgen. Alleen met het juiste wachtwoord kan het apparaat aan het kanaal deelnemen",
469
- "placeholder": "Voer het synchronisatiekanaalwachtwoord in",
470
- "title": "Synchronisatiekanaalwachtwoord"
471
- },
472
- "desc": "Realtime, point-to-point datacommunicatie. Apparaten moeten tegelijkertijd online zijn om te synchroniseren",
473
- "enabled": {
474
- "invalid": "Schakel de synchronisatie in nadat u de synchronisatiekanaalnaam heeft ingevoerd",
475
- "title": "Synchronisatie inschakelen"
476
- },
477
- "title": "WebRTC-synchronisatie"
478
- }
463
+ "message": "Deze functie is momenteel experimenteel en kan onverwachte of onstabiele situaties veroorzaken. Als u problemen ondervindt, geef dan tijdig feedback."
464
+ },
465
+ "webrtc": {
466
+ "channelName": {
467
+ "desc": "WebRTC zal deze naam gebruiken om een synchronisatiekanaal te maken, zorg ervoor dat de kanaalnaam uniek is",
468
+ "placeholder": "Voer de synchronisatiekanaalnaam in",
469
+ "shuffle": "Willekeurig genereren",
470
+ "title": "Synchronisatiekanaalnaam"
471
+ },
472
+ "channelPassword": {
473
+ "desc": "Voeg een wachtwoord toe om de privacy van het kanaal te waarborgen, alleen apparaten met het juiste wachtwoord kunnen het kanaal betreden",
474
+ "placeholder": "Voer het synchronisatiekanaalwachtwoord in",
475
+ "title": "Synchronisatiekanaalwachtwoord"
476
+ },
477
+ "desc": "Realtime, point-to-point datacommunicatie, apparaten moeten tegelijkertijd online zijn om te synchroniseren",
478
+ "enabled": {
479
+ "invalid": "Schakel de synchronisatie in nadat u de synchronisatiekanaalnaam heeft ingevuld",
480
+ "title": "Synchronisatie inschakelen"
481
+ },
482
+ "title": "WebRTC Synchronisatie"
479
483
  }
480
484
  },
481
485
  "tab": {
482
486
  "about": "Over",
483
487
  "agent": "Standaardassistent",
484
488
  "common": "Algemene instellingen",
489
+ "experiment": "Experiment",
485
490
  "llm": "Taalmodel",
491
+ "sync": "Cloudsynchronisatie",
486
492
  "tts": "Spraakdienst"
487
493
  },
488
494
  "tools": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01. Sztuczna inteligencja ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Brak opisu",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Nieprawidłowa konfiguracja Ollama, sprawdź konfigurację Ollama i spróbuj ponownie",
51
51
  "InvalidOpenRouterAPIKey": "OpenRouter API Key jest nieprawidłowy lub pusty. Sprawdź klucz API OpenRouter i spróbuj ponownie.",
52
52
  "InvalidPerplexityAPIKey": "Klucz API Perplexity jest nieprawidłowy lub pusty. Sprawdź klucz API Perplexity i spróbuj ponownie.",
53
+ "InvalidZeroOneAPIKey": "零一万物 API Key 不正确或为空,请检查零一万物 API Key 后重试",
53
54
  "InvalidZhipuAPIKey": "Nieprawidłowy lub pusty klucz API Zhipu, prosimy sprawdzić klucz API Zhipu i spróbować ponownie.",
54
55
  "LocationNotSupportError": "Przepraszamy, Twoja lokalizacja nie obsługuje tego usługi modelu, być może ze względu na ograniczenia regionalne lub brak dostępności usługi. Proszę sprawdź, czy bieżąca lokalizacja obsługuje tę usługę, lub spróbuj użyć innych informacji o lokalizacji.",
55
56
  "MistralBizError": "请求 Mistral AI 服务出错,请根据以下信息排查或重试",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Przepraszamy, inicjalizacja klienta OpenAPI nie powiodła się. Proszę sprawdź, czy informacje konfiguracyjne OpenAPI są poprawne",
73
74
  "PluginServerError": "Błąd zwrócony przez serwer wtyczki. Proszę sprawdź plik opisowy wtyczki, konfigurację wtyczki lub implementację serwera zgodnie z poniższymi informacjami o błędzie",
74
75
  "PluginSettingsInvalid": "Ta wtyczka wymaga poprawnej konfiguracji przed użyciem. Proszę sprawdź, czy Twoja konfiguracja jest poprawna",
76
+ "ZeroOneBizError": "请求零一万物服务出错,请根据以下信息排查或重试",
75
77
  "ZhipuBizError": "Wystąpił błąd żądania usługi Zhipu, prosimy o sprawdzenie poniższych informacji lub ponowne próbowanie."
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Wprowadź swój klucz API Perplexity, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
121
123
  "title": "Użyj niestandardowego klucza API Perplexity"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "输入你的零一万物 API Key 即可开始会话。应用不会记录你的 API Key",
127
+ "title": "使用自定义零一万物 API Key"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Wprowadź swój klucz API Zhipu, aby rozpocząć sesję. Aplikacja nie będzie przechowywać Twojego klucza API.",
125
131
  "title": "Użyj niestandardowego klucza API Zhipu"
@@ -150,4 +156,4 @@
150
156
  "password": "Hasło"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "Klucz API"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne万物",
206
+ "token": {
207
+ "desc": "请输入来自01.AI ZeroOne万物的API密钥",
208
+ "placeholder": "01.AI ZeroOne万物API密钥",
209
+ "title": "API密钥"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "智谱",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity",
110
+ "zeroone": "01. IA ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Sem descrição",
@@ -50,6 +50,7 @@
50
50
  "InvalidOllamaArgs": "Configuração Ollama inválida, verifique a configuração do Ollama e tente novamente",
51
51
  "InvalidOpenRouterAPIKey": "Chave da API do OpenRouter inválida ou em branco. Por favor, verifique a chave da API do OpenRouter e tente novamente.",
52
52
  "InvalidPerplexityAPIKey": "Chave da API Perplexity inválida ou em branco, verifique a chave da API Perplexity e tente novamente",
53
+ "InvalidZeroOneAPIKey": "Chave de API ZeroOne inválida ou vazia, verifique a chave de API ZeroOne e tente novamente",
53
54
  "InvalidZhipuAPIKey": "Chave de API Zhipu incorreta ou vazia, por favor, verifique a chave de API Zhipu e tente novamente",
54
55
  "LocationNotSupportError": "Desculpe, sua localização atual não suporta este serviço de modelo, pode ser devido a restrições geográficas ou serviço não disponível. Por favor, verifique se a localização atual suporta o uso deste serviço ou tente usar outras informações de localização.",
55
56
  "MistralBizError": "Ocorreu um erro ao solicitar o serviço Mistral AI. Por favor, verifique as informações abaixo ou tente novamente.",
@@ -72,6 +73,7 @@
72
73
  "PluginOpenApiInitError": "Desculpe, a inicialização do cliente OpenAPI falhou. Verifique se as informações de configuração do OpenAPI estão corretas",
73
74
  "PluginServerError": "Erro na resposta do servidor do plugin. Verifique o arquivo de descrição do plugin, a configuração do plugin ou a implementação do servidor de acordo com as informações de erro abaixo",
74
75
  "PluginSettingsInvalid": "Este plugin precisa ser configurado corretamente antes de ser usado. Verifique se sua configuração está correta",
76
+ "ZeroOneBizError": "Erro no serviço ZeroOneBiz, verifique as informações abaixo e tente novamente",
75
77
  "ZhipuBizError": "Erro ao solicitar o serviço Zhipu, por favor, verifique as informações abaixo ou tente novamente"
76
78
  },
77
79
  "stt": {
@@ -120,6 +122,10 @@
120
122
  "description": "Insira sua chave da API Perplexity para iniciar a sessão. O aplicativo não irá armazenar sua chave da API",
121
123
  "title": "Usar chave da API Perplexity personalizada"
122
124
  },
125
+ "ZeroOne": {
126
+ "description": "Insira sua chave de API ZeroOne para iniciar a sessão. O aplicativo não irá armazenar sua chave de API",
127
+ "title": "Usar chave de API ZeroOne personalizada"
128
+ },
123
129
  "Zhipu": {
124
130
  "description": "Digite sua chave de API Zhipu para iniciar a sessão. O aplicativo não irá armazenar sua chave de API",
125
131
  "title": "Usar chave de API Zhipu personalizada"
@@ -150,4 +156,4 @@
150
156
  "password": "Senha"
151
157
  }
152
158
  }
153
- }
159
+ }
@@ -201,6 +201,14 @@
201
201
  "title": "Chave da API"
202
202
  }
203
203
  },
204
+ "ZeroOne": {
205
+ "title": "01.AI ZeroOne",
206
+ "token": {
207
+ "desc": "Insira a chave da API do 01.AI ZeroOne",
208
+ "placeholder": "Chave da API do 01.AI ZeroOne",
209
+ "title": "Chave da API"
210
+ }
211
+ },
204
212
  "Zhipu": {
205
213
  "title": "Zhipu AI",
206
214
  "token": {
@@ -107,6 +107,7 @@
107
107
  "openai": "OpenAI",
108
108
  "openrouter": "OpenRouter",
109
109
  "perplexity": "Perplexity AI",
110
+ "zeroone": "01. ИИ ZeroOne",
110
111
  "zhipu": "Zhipu AI"
111
112
  },
112
113
  "noDescription": "Нет описания",