@lobehub/chat 1.15.7 → 1.15.8
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/CHANGELOG.md +25 -0
- package/README.md +6 -6
- package/README.zh-CN.md +6 -6
- package/locales/ar/knowledgeBase.json +1 -0
- package/locales/ar/ragEval.json +91 -0
- package/locales/bg-BG/knowledgeBase.json +1 -0
- package/locales/bg-BG/ragEval.json +91 -0
- package/locales/de-DE/knowledgeBase.json +1 -0
- package/locales/de-DE/ragEval.json +91 -0
- package/locales/en-US/knowledgeBase.json +1 -0
- package/locales/en-US/ragEval.json +91 -0
- package/locales/es-ES/knowledgeBase.json +1 -0
- package/locales/es-ES/ragEval.json +91 -0
- package/locales/fr-FR/knowledgeBase.json +1 -0
- package/locales/fr-FR/ragEval.json +91 -0
- package/locales/it-IT/knowledgeBase.json +1 -0
- package/locales/it-IT/ragEval.json +91 -0
- package/locales/ja-JP/knowledgeBase.json +1 -0
- package/locales/ja-JP/ragEval.json +91 -0
- package/locales/ko-KR/knowledgeBase.json +1 -0
- package/locales/ko-KR/ragEval.json +91 -0
- package/locales/nl-NL/knowledgeBase.json +1 -0
- package/locales/nl-NL/ragEval.json +91 -0
- package/locales/pl-PL/knowledgeBase.json +1 -0
- package/locales/pl-PL/ragEval.json +91 -0
- package/locales/pt-BR/knowledgeBase.json +1 -0
- package/locales/pt-BR/ragEval.json +91 -0
- package/locales/ru-RU/knowledgeBase.json +1 -0
- package/locales/ru-RU/ragEval.json +91 -0
- package/locales/tr-TR/knowledgeBase.json +1 -0
- package/locales/tr-TR/ragEval.json +91 -0
- package/locales/vi-VN/knowledgeBase.json +1 -0
- package/locales/vi-VN/ragEval.json +91 -0
- package/locales/zh-CN/knowledgeBase.json +1 -0
- package/locales/zh-CN/ragEval.json +91 -0
- package/locales/zh-TW/knowledgeBase.json +1 -0
- package/locales/zh-TW/ragEval.json +91 -0
- package/package.json +2 -1
- package/src/app/(main)/repos/[id]/@menu/Head/index.tsx +4 -13
- package/src/app/(main)/repos/[id]/@menu/Menu/index.tsx +30 -21
- package/src/app/(main)/repos/[id]/@menu/default.tsx +8 -2
- package/src/app/(main)/repos/[id]/evals/components/Container.tsx +25 -0
- package/src/app/(main)/repos/[id]/evals/components/Tabs.tsx +35 -0
- package/src/app/(main)/repos/[id]/evals/dataset/CreateDataset/CreateForm.tsx +72 -0
- package/src/app/(main)/repos/[id]/evals/dataset/CreateDataset/index.tsx +37 -0
- package/src/app/(main)/repos/[id]/evals/dataset/DatasetDetail/index.tsx +126 -0
- package/src/app/(main)/repos/[id]/evals/dataset/DatasetList/Item.tsx +59 -0
- package/src/app/(main)/repos/[id]/evals/dataset/DatasetList/index.tsx +32 -0
- package/src/app/(main)/repos/[id]/evals/dataset/EmptyGuide/index.tsx +33 -0
- package/src/app/(main)/repos/[id]/evals/dataset/page.tsx +47 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/CreateEvaluation/CreateForm.tsx +93 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/CreateEvaluation/index.tsx +28 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/CreateEvaluation/useModal.tsx +39 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/EmptyGuide/index.tsx +25 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/EvaluationList/index.tsx +209 -0
- package/src/app/(main)/repos/[id]/evals/evaluation/page.tsx +32 -0
- package/src/app/(main)/repos/[id]/evals/layout.tsx +22 -0
- package/src/app/(main)/repos/[id]/evals/page.tsx +9 -0
- package/src/app/(main)/repos/[id]/evals/type.ts +5 -0
- package/src/app/(main)/repos/[id]/not-found.tsx +3 -0
- package/src/components/FileIcon/index.tsx +2 -2
- package/src/config/featureFlags/schema.ts +3 -1
- package/src/database/server/migrations/0008_add_rag_evals.sql +120 -0
- package/src/database/server/migrations/meta/0008_snapshot.json +3463 -0
- package/src/database/server/migrations/meta/_journal.json +7 -0
- package/src/database/server/models/file.ts +11 -2
- package/src/database/server/models/ragEval/dataset.ts +59 -0
- package/src/database/server/models/ragEval/datasetRecord.ts +87 -0
- package/src/database/server/models/ragEval/evaluation.ts +96 -0
- package/src/database/server/models/ragEval/evaluationRecord.ts +64 -0
- package/src/database/server/models/ragEval/index.ts +4 -0
- package/src/database/server/schemas/lobechat/asyncTask.ts +24 -0
- package/src/database/server/schemas/lobechat/file.ts +2 -18
- package/src/database/server/schemas/lobechat/index.ts +2 -0
- package/src/database/server/schemas/lobechat/ragEvals.ts +105 -0
- package/src/database/server/schemas/lobechat/relations.ts +2 -1
- package/src/libs/agent-runtime/types/chat.ts +3 -0
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +3 -1
- package/src/libs/langchain/loaders/index.ts +1 -1
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/knowledgeBase.ts +1 -0
- package/src/locales/default/ragEval.ts +93 -0
- package/src/server/modules/S3/index.ts +11 -0
- package/src/server/routers/async/index.ts +2 -0
- package/src/server/routers/async/ragEval.ts +138 -0
- package/src/server/routers/lambda/index.ts +2 -1
- package/src/server/routers/lambda/ragEval.ts +296 -0
- package/src/services/ragEval.ts +67 -0
- package/src/services/upload.ts +11 -4
- package/src/store/file/slices/upload/action.ts +8 -6
- package/src/store/knowledgeBase/initialState.ts +3 -1
- package/src/store/knowledgeBase/slices/ragEval/actions/dataset.ts +88 -0
- package/src/store/knowledgeBase/slices/ragEval/actions/evaluation.ts +62 -0
- package/src/store/knowledgeBase/slices/ragEval/actions/index.ts +20 -0
- package/src/store/knowledgeBase/slices/ragEval/index.ts +2 -0
- package/src/store/knowledgeBase/slices/ragEval/initialState.ts +7 -0
- package/src/store/knowledgeBase/store.ts +9 -3
- package/src/store/serverConfig/selectors.test.ts +1 -0
- package/src/types/eval/dataset.ts +47 -0
- package/src/types/eval/evaluation.ts +53 -0
- package/src/types/eval/index.ts +3 -0
- package/src/types/eval/ragas.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.15.8](https://github.com/lobehub/lobe-chat/compare/v1.15.7...v1.15.8)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-09-03**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Fix `.PDF` can not be chunked.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Fix `.PDF` can not be chunked, closes [#3720](https://github.com/lobehub/lobe-chat/issues/3720) ([4244c04](https://github.com/lobehub/lobe-chat/commit/4244c04))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 1.15.7](https://github.com/lobehub/lobe-chat/compare/v1.15.6...v1.15.7)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-09-03**</sup>
|
package/README.md
CHANGED
|
@@ -285,10 +285,11 @@ Our marketplace is not just a showcase platform but also a collaborative space.
|
|
|
285
285
|
|
|
286
286
|
<!-- AGENT LIST -->
|
|
287
287
|
|
|
288
|
-
| Recent Submits
|
|
289
|
-
|
|
|
290
|
-
| [
|
|
291
|
-
| [
|
|
288
|
+
| Recent Submits | Description |
|
|
289
|
+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
290
|
+
| [Nuxt 3/Vue.js Master Developer](https://chat-preview.lobehub.com/market?agent=nuxt-vue-developer)<br/><sup>By **[Kadreev](https://github.com/Kadreev)** on **2024-09-03**</sup> | Specialized in full-stack development with Nuxt 3 expertise.<br/>`nuxt-3` `vue-js` `full-stack-development` `java-script` `web-applications` |
|
|
291
|
+
| [International Lyricist](https://chat-preview.lobehub.com/market?agent=letrista-internacional)<br/><sup>By **[mnector](https://github.com/mnector)** on **2024-08-29**</sup> | Specialized in writing lyrics for songs in Spanish, English, and French, with a focus on storytelling and the emotions of the provided content.<br/>`lyricism` `translation` `music` |
|
|
292
|
+
| [Backtracking Question Expert](https://chat-preview.lobehub.com/market?agent=step-back-expert)<br/><sup>By **[tiny656](https://github.com/tiny656)** on **2024-08-27**</sup> | Hello! I am an expert in world knowledge, skilled in using backtracking questioning strategies to help you gain a deeper understanding and analysis of issues. Please enter a question, and I will respond to it according to the following process: |
|
|
292
293
|
|
|
293
294
|
1. Provide at least 3 optional backtracking questions that align with the strategy.
|
|
294
295
|
2. Answer each of these backtracking questions.
|
|
@@ -296,9 +297,8 @@ Our marketplace is not just a showcase platform but also a collaborative space.
|
|
|
296
297
|
|
|
297
298
|
Please tell me what issue you would like to explore?<br/>`backtracking-questions` `thinking-strategies` `problem-analysis` |
|
|
298
299
|
\| [Unreal Engine Master](https://chat-preview.lobehub.com/market?agent=unreal-engine-master)<br/><sup>By **[thedivergentai](https://github.com/thedivergentai)** on **2024-08-27**</sup> | Unreal Game Development Companion<br/>`game-development` `unreal-engine` `software-engineering` |
|
|
299
|
-
\| [TypeScript Solution Architect](https://chat-preview.lobehub.com/market?agent=typescript-developer)<br/><sup>By **[swarfte](https://github.com/swarfte)** on **2024-08-24**</sup> | Expert in TypeScript, Node.js, Vue.js 3, Nuxt.js 3, Express.js, React.js, and modern UI libraries.<br/>`type-script` `java-script` `web-development` `coding-standards` `best-practices` |
|
|
300
300
|
|
|
301
|
-
> 📊 Total agents: [<kbd>**
|
|
301
|
+
> 📊 Total agents: [<kbd>**322**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
302
302
|
|
|
303
303
|
<!-- AGENT LIST -->
|
|
304
304
|
|
package/README.zh-CN.md
CHANGED
|
@@ -273,10 +273,11 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
|
273
273
|
|
|
274
274
|
<!-- AGENT LIST -->
|
|
275
275
|
|
|
276
|
-
| 最近新增
|
|
277
|
-
|
|
|
278
|
-
| [
|
|
279
|
-
| [
|
|
276
|
+
| 最近新增 | 助手说明 |
|
|
277
|
+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
|
|
278
|
+
| [Nuxt 3/Vue.js 大师开发者](https://chat-preview.lobehub.com/market?agent=nuxt-vue-developer)<br/><sup>By **[Kadreev](https://github.com/Kadreev)** on **2024-09-03**</sup> | 专注于全栈开发,拥有 Nuxt 3 专业知识。<br/>`nuxt-3` `vue-js` `全栈开发` `java-script` `网络应用` |
|
|
279
|
+
| [国际歌词创作人](https://chat-preview.lobehub.com/market?agent=letrista-internacional)<br/><sup>By **[mnector](https://github.com/mnector)** on **2024-08-29**</sup> | 专注于为西班牙语、英语和法语歌曲创作歌词,着重于叙事和所提供内容的情感。<br/>`歌词创作` `翻译` `音乐` |
|
|
280
|
+
| [后退提问专家](https://chat-preview.lobehub.com/market?agent=step-back-expert)<br/><sup>By **[tiny656](https://github.com/tiny656)** on **2024-08-27**</sup> | 你好!我是世界知识的专家,擅长用后退提问策略来帮助你更深入地理解和分析问题。请你输入一个问题,我会根据以下流程回答你的问题: |
|
|
280
281
|
|
|
281
282
|
1. 给出至少 3 个符合策略的可选后退提问。
|
|
282
283
|
2. 分别回答这些后退提问。
|
|
@@ -284,9 +285,8 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
|
284
285
|
|
|
285
286
|
请告诉我你想要探讨的问题是什么?<br/>`后退提问` `思考策略` `问题分析` |
|
|
286
287
|
\| [虚幻引擎大师](https://chat-preview.lobehub.com/market?agent=unreal-engine-master)<br/><sup>By **[thedivergentai](https://github.com/thedivergentai)** on **2024-08-27**</sup> | 虚幻游戏开发助手<br/>`游戏开发` `虚幻引擎` `软件工程` |
|
|
287
|
-
\| [TypeScript 解决方案架构师](https://chat-preview.lobehub.com/market?agent=typescript-developer)<br/><sup>By **[swarfte](https://github.com/swarfte)** on **2024-08-24**</sup> | 精通 TypeScript、Node.js、Vue.js 3、Nuxt.js 3、Express.js、React.js 和现代 UI 库。<br/>`类型脚本` `java-script` `网页开发` `编码标准` `最佳实践` |
|
|
288
288
|
|
|
289
|
-
> 📊 Total agents: [<kbd>**
|
|
289
|
+
> 📊 Total agents: [<kbd>**322**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
290
290
|
|
|
291
291
|
<!-- AGENT LIST -->
|
|
292
292
|
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "إنشاء جديد",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "وصف مجموعة البيانات (اختياري)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "اسم مجموعة البيانات",
|
|
9
|
+
"required": "يرجى إدخال اسم مجموعة البيانات"
|
|
10
|
+
},
|
|
11
|
+
"title": "إضافة مجموعة بيانات"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "إنشاء مجموعة بيانات",
|
|
15
|
+
"emptyGuide": "مجموعة البيانات الحالية فارغة، يرجى إنشاء مجموعة بيانات.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "استيراد البيانات"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "الإجراءات",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "الإجابة المثالية"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "السؤال"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "ملفات مرجعية"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "يرجى اختيار مجموعة بيانات من اليسار",
|
|
34
|
+
"title": "تفاصيل مجموعة البيانات"
|
|
35
|
+
},
|
|
36
|
+
"title": "مجموعة البيانات"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "إنشاء جديد",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "يرجى اختيار مجموعة بيانات التقييم الخاصة بك",
|
|
44
|
+
"required": "يرجى اختيار مجموعة بيانات التقييم"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "وصف مهمة التقييم (اختياري)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "اسم مهمة التقييم",
|
|
51
|
+
"required": "يرجى إدخال اسم مهمة التقييم"
|
|
52
|
+
},
|
|
53
|
+
"title": "إضافة مهمة تقييم"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "إنشاء تقييم",
|
|
56
|
+
"emptyGuide": "مهمة التقييم الحالية فارغة، ابدأ بإنشاء تقييم.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "تحقق من الحالة",
|
|
61
|
+
"confirmDelete": "هل تريد حذف هذه المهمة من التقييم؟",
|
|
62
|
+
"confirmRun": "هل تريد بدء التشغيل؟ بعد بدء التشغيل، سيتم تنفيذ مهمة التقييم في الخلفية بشكل غير متزامن، وإغلاق الصفحة لن يؤثر على تنفيذ المهمة غير المتزامنة.",
|
|
63
|
+
"downloadRecords": "تنزيل السجلات",
|
|
64
|
+
"retry": "إعادة المحاولة",
|
|
65
|
+
"run": "تشغيل",
|
|
66
|
+
"title": "الإجراءات"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "مجموعة البيانات"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "اسم مهمة التقييم"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "عدد سجلات التقييم"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "ملفات مرجعية"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "حدث خطأ أثناء التنفيذ",
|
|
82
|
+
"pending": "في انتظار التشغيل",
|
|
83
|
+
"processing": "جارٍ التشغيل",
|
|
84
|
+
"success": "تم التنفيذ بنجاح",
|
|
85
|
+
"title": "الحالة"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "قائمة مهام التقييم"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Създаване",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Описание на набора от данни (по избор)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Име на набора от данни",
|
|
9
|
+
"required": "Моля, попълнете името на набора от данни"
|
|
10
|
+
},
|
|
11
|
+
"title": "Добавяне на набор от данни"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Създаване на набор от данни",
|
|
15
|
+
"emptyGuide": "Текущият набор от данни е празен, моля, създайте нов набор от данни.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Импорт на данни"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Действия",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Очакван отговор"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Въпрос"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Референтни файлове"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Моля, изберете набор от данни отляво",
|
|
34
|
+
"title": "Детайли на набора от данни"
|
|
35
|
+
},
|
|
36
|
+
"title": "Набор от данни"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Създаване",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Моля, изберете вашия набор от данни за оценка",
|
|
44
|
+
"required": "Моля, изберете набор от данни за оценка"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Описание на задачата за оценка (по избор)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Име на задачата за оценка",
|
|
51
|
+
"required": "Моля, попълнете името на задачата за оценка"
|
|
52
|
+
},
|
|
53
|
+
"title": "Добавяне на задача за оценка"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Създаване на оценка",
|
|
56
|
+
"emptyGuide": "Текущата задача за оценка е празна, започнете да създавате оценка.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Проверка на статуса",
|
|
61
|
+
"confirmDelete": "Наистина ли искате да изтриете тази оценка?",
|
|
62
|
+
"confirmRun": "Наистина ли искате да стартирате? След стартиране, задачата за оценка ще се изпълнява асинхронно на заден план, затварянето на страницата няма да повлияе на изпълнението на асинхронната задача.",
|
|
63
|
+
"downloadRecords": "Изтегляне на оценки",
|
|
64
|
+
"retry": "Опитай отново",
|
|
65
|
+
"run": "Стартиране",
|
|
66
|
+
"title": "Действия"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Набор от данни"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Име на задачата за оценка"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Брой оценки"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Референтни файлове"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Грешка при изпълнение",
|
|
82
|
+
"pending": "В очакване на изпълнение",
|
|
83
|
+
"processing": "Изпълнява се",
|
|
84
|
+
"success": "Успешно изпълнение",
|
|
85
|
+
"title": "Статус"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Списък с задачи за оценка"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Neu erstellen",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Beschreibung des Datensatzes (optional)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Name des Datensatzes",
|
|
9
|
+
"required": "Bitte geben Sie den Namen des Datensatzes ein"
|
|
10
|
+
},
|
|
11
|
+
"title": "Datensatz hinzufügen"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Datensatz erstellen",
|
|
15
|
+
"emptyGuide": "Der aktuelle Datensatz ist leer, bitte erstellen Sie einen Datensatz.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Daten importieren"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Aktionen",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Erwartete Antwort"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Frage"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Referenzdateien"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Bitte wählen Sie einen Datensatz auf der linken Seite aus",
|
|
34
|
+
"title": "Details zum Datensatz"
|
|
35
|
+
},
|
|
36
|
+
"title": "Datensatz"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Neu erstellen",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Bitte wählen Sie Ihren Bewertungsdatensatz aus",
|
|
44
|
+
"required": "Bitte wählen Sie einen Bewertungsdatensatz aus"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Beschreibung der Bewertungsaufgabe (optional)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Name der Bewertungsaufgabe",
|
|
51
|
+
"required": "Bitte geben Sie den Namen der Bewertungsaufgabe ein"
|
|
52
|
+
},
|
|
53
|
+
"title": "Bewertungsaufgabe hinzufügen"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Bewertung erstellen",
|
|
56
|
+
"emptyGuide": "Aktuell sind keine Bewertungsaufgaben vorhanden, beginnen Sie mit der Erstellung einer Bewertung.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Status überprüfen",
|
|
61
|
+
"confirmDelete": "Möchten Sie diese Bewertungsaufgabe wirklich löschen?",
|
|
62
|
+
"confirmRun": "Möchten Sie die Ausführung starten? Nach dem Start wird die Bewertungsaufgabe im Hintergrund asynchron ausgeführt, das Schließen der Seite hat keinen Einfluss auf die Ausführung der asynchronen Aufgabe.",
|
|
63
|
+
"downloadRecords": "Bewertung herunterladen",
|
|
64
|
+
"retry": "Erneut versuchen",
|
|
65
|
+
"run": "Ausführen",
|
|
66
|
+
"title": "Aktionen"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Datensatz"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Name der Bewertungsaufgabe"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Anzahl der Bewertungsaufzeichnungen"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Referenzdateien"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Fehler bei der Ausführung",
|
|
82
|
+
"pending": "Warten auf Ausführung",
|
|
83
|
+
"processing": "Wird ausgeführt",
|
|
84
|
+
"success": "Erfolgreich ausgeführt",
|
|
85
|
+
"title": "Status"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Liste der Bewertungsaufgaben"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Create",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Dataset description (optional)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Dataset name",
|
|
9
|
+
"required": "Please enter the dataset name"
|
|
10
|
+
},
|
|
11
|
+
"title": "Add Dataset"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Create Dataset",
|
|
15
|
+
"emptyGuide": "There are currently no datasets. Please create a dataset.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Import Data"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Actions",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Expected Answer"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Question"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Reference Files"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Please select a dataset on the left",
|
|
34
|
+
"title": "Dataset Details"
|
|
35
|
+
},
|
|
36
|
+
"title": "Dataset"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Create",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Please select your evaluation dataset",
|
|
44
|
+
"required": "Please select an evaluation dataset"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Evaluation task description (optional)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Evaluation task name",
|
|
51
|
+
"required": "Please enter the evaluation task name"
|
|
52
|
+
},
|
|
53
|
+
"title": "Add Evaluation Task"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Create Evaluation",
|
|
56
|
+
"emptyGuide": "There are currently no evaluation tasks. Start creating an evaluation.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Check Status",
|
|
61
|
+
"confirmDelete": "Are you sure you want to delete this evaluation?",
|
|
62
|
+
"confirmRun": "Are you sure you want to start running? The evaluation task will be executed asynchronously in the background, and closing the page will not affect the execution of the asynchronous task.",
|
|
63
|
+
"downloadRecords": "Download Evaluation",
|
|
64
|
+
"retry": "Retry",
|
|
65
|
+
"run": "Run",
|
|
66
|
+
"title": "Actions"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Dataset"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Evaluation Task Name"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Number of Evaluation Records"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Reference Files"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Execution Error",
|
|
82
|
+
"pending": "Pending",
|
|
83
|
+
"processing": "In Progress",
|
|
84
|
+
"success": "Execution Successful",
|
|
85
|
+
"title": "Status"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Evaluation Task List"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Nuevo",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Descripción del conjunto de datos (opcional)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Nombre del conjunto de datos",
|
|
9
|
+
"required": "Por favor, complete el nombre del conjunto de datos"
|
|
10
|
+
},
|
|
11
|
+
"title": "Agregar conjunto de datos"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Crear conjunto de datos",
|
|
15
|
+
"emptyGuide": "El conjunto de datos actual está vacío, por favor crea un conjunto de datos.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Importar datos"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Acciones",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Respuesta ideal"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Pregunta"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Archivos de referencia"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Por favor, selecciona un conjunto de datos a la izquierda",
|
|
34
|
+
"title": "Detalles del conjunto de datos"
|
|
35
|
+
},
|
|
36
|
+
"title": "Conjunto de datos"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Nuevo",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Por favor, selecciona tu conjunto de datos de evaluación",
|
|
44
|
+
"required": "Por favor, selecciona un conjunto de datos de evaluación"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Descripción de la tarea de evaluación (opcional)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Nombre de la tarea de evaluación",
|
|
51
|
+
"required": "Por favor, complete el nombre de la tarea de evaluación"
|
|
52
|
+
},
|
|
53
|
+
"title": "Agregar tarea de evaluación"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Crear evaluación",
|
|
56
|
+
"emptyGuide": "La tarea de evaluación actual está vacía, comienza a crear una evaluación.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Verificar estado",
|
|
61
|
+
"confirmDelete": "¿Deseas eliminar esta evaluación?",
|
|
62
|
+
"confirmRun": "¿Deseas comenzar a ejecutar? Al comenzar, la tarea de evaluación se ejecutará de forma asíncrona en segundo plano, cerrar la página no afectará la ejecución de la tarea asíncrona.",
|
|
63
|
+
"downloadRecords": "Descargar evaluación",
|
|
64
|
+
"retry": "Reintentar",
|
|
65
|
+
"run": "Ejecutar",
|
|
66
|
+
"title": "Acciones"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Conjunto de datos"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Nombre de la tarea de evaluación"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Número de registros de evaluación"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Archivos de referencia"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Error en la ejecución",
|
|
82
|
+
"pending": "Pendiente de ejecución",
|
|
83
|
+
"processing": "Ejecutando",
|
|
84
|
+
"success": "Ejecución exitosa",
|
|
85
|
+
"title": "Estado"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Lista de tareas de evaluación"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|