@lobehub/chat 1.15.6 → 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 +50 -0
- package/README.md +6 -6
- package/README.zh-CN.md +6 -6
- package/docs/self-hosting/server-database/docker-compose.mdx +2 -2
- package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +2 -2
- 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/app/(main)/settings/llm/components/ProviderConfig/index.tsx +2 -2
- 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
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Créer",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Description du jeu de données (optionnel)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Nom du jeu de données",
|
|
9
|
+
"required": "Veuillez remplir le nom du jeu de données"
|
|
10
|
+
},
|
|
11
|
+
"title": "Ajouter un jeu de données"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Créer un jeu de données",
|
|
15
|
+
"emptyGuide": "Le jeu de données actuel est vide, veuillez en créer un.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Importer des données"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Actions",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Réponse idéale"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Question"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Fichiers de référence"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Veuillez sélectionner un jeu de données à gauche",
|
|
34
|
+
"title": "Détails du jeu de données"
|
|
35
|
+
},
|
|
36
|
+
"title": "Jeu de données"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Créer",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Veuillez sélectionner votre jeu de données d'évaluation",
|
|
44
|
+
"required": "Veuillez sélectionner un jeu de données d'évaluation"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Description de la tâche d'évaluation (optionnel)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Nom de la tâche d'évaluation",
|
|
51
|
+
"required": "Veuillez remplir le nom de la tâche d'évaluation"
|
|
52
|
+
},
|
|
53
|
+
"title": "Ajouter une tâche d'évaluation"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Créer une évaluation",
|
|
56
|
+
"emptyGuide": "La tâche d'évaluation actuelle est vide, commencez à créer une évaluation.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Vérifier l'état",
|
|
61
|
+
"confirmDelete": "Voulez-vous supprimer cette évaluation ?",
|
|
62
|
+
"confirmRun": "Voulez-vous commencer l'exécution ? L'exécution sera effectuée en arrière-plan de manière asynchrone, fermer la page n'affectera pas l'exécution de la tâche asynchrone.",
|
|
63
|
+
"downloadRecords": "Télécharger l'évaluation",
|
|
64
|
+
"retry": "Réessayer",
|
|
65
|
+
"run": "Exécuter",
|
|
66
|
+
"title": "Actions"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Jeu de données"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Nom de la tâche d'évaluation"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Nombre d'enregistrements d'évaluation"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Fichiers de référence"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Erreur d'exécution",
|
|
82
|
+
"pending": "En attente d'exécution",
|
|
83
|
+
"processing": "En cours d'exécution",
|
|
84
|
+
"success": "Exécution réussie",
|
|
85
|
+
"title": "État"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Liste des tâches d'évaluation"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addDataset": {
|
|
3
|
+
"confirm": "Nuovo",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Descrizione del dataset (opzionale)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Nome del dataset",
|
|
9
|
+
"required": "Si prega di inserire il nome del dataset"
|
|
10
|
+
},
|
|
11
|
+
"title": "Aggiungi dataset"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Crea dataset",
|
|
15
|
+
"emptyGuide": "Il dataset attuale è vuoto, si prega di crearne uno.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Importa dati"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Operazioni",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Risposta ideale"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Domanda"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "File di riferimento"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Si prega di selezionare un dataset a sinistra",
|
|
34
|
+
"title": "Dettagli del dataset"
|
|
35
|
+
},
|
|
36
|
+
"title": "Dataset"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Nuovo",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Seleziona il tuo dataset di valutazione",
|
|
44
|
+
"required": "Si prega di selezionare un dataset di valutazione"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Descrizione del compito di valutazione (opzionale)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Nome del compito di valutazione",
|
|
51
|
+
"required": "Si prega di inserire il nome del compito di valutazione"
|
|
52
|
+
},
|
|
53
|
+
"title": "Aggiungi compito di valutazione"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Crea valutazione",
|
|
56
|
+
"emptyGuide": "Attualmente non ci sono compiti di valutazione, inizia a crearne uno.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Controlla stato",
|
|
61
|
+
"confirmDelete": "Sei sicuro di voler eliminare questa valutazione?",
|
|
62
|
+
"confirmRun": "Sei sicuro di voler avviare l'esecuzione? L'esecuzione avverrà in modo asincrono in background, chiudere la pagina non influenzerà l'esecuzione del compito asincrono.",
|
|
63
|
+
"downloadRecords": "Scarica valutazione",
|
|
64
|
+
"retry": "Riprova",
|
|
65
|
+
"run": "Esegui",
|
|
66
|
+
"title": "Operazioni"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Dataset"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Nome del compito di valutazione"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Numero di registrazioni di valutazione"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "File di riferimento"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Errore durante l'esecuzione",
|
|
82
|
+
"pending": "In attesa di esecuzione",
|
|
83
|
+
"processing": "In esecuzione",
|
|
84
|
+
"success": "Esecuzione riuscita",
|
|
85
|
+
"title": "Stato"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Elenco dei compiti di valutazione"
|
|
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": "새로 만들기",
|
|
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": "Nieuw aanmaken",
|
|
4
|
+
"description": {
|
|
5
|
+
"placeholder": "Beschrijving van de dataset (optioneel)"
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"placeholder": "Naam van de dataset",
|
|
9
|
+
"required": "Vul alstublieft de naam van de dataset in"
|
|
10
|
+
},
|
|
11
|
+
"title": "Dataset toevoegen"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"addNewButton": "Dataset aanmaken",
|
|
15
|
+
"emptyGuide": "De huidige dataset is leeg, maak alstublieft een dataset aan.",
|
|
16
|
+
"list": {
|
|
17
|
+
"table": {
|
|
18
|
+
"actions": {
|
|
19
|
+
"importData": "Gegevens importeren"
|
|
20
|
+
},
|
|
21
|
+
"columns": {
|
|
22
|
+
"actions": "Acties",
|
|
23
|
+
"ideal": {
|
|
24
|
+
"title": "Gewenst antwoord"
|
|
25
|
+
},
|
|
26
|
+
"question": {
|
|
27
|
+
"title": "Vraag"
|
|
28
|
+
},
|
|
29
|
+
"referenceFiles": {
|
|
30
|
+
"title": "Referentiebestanden"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"notSelected": "Selecteer alstublieft een dataset aan de linkerkant",
|
|
34
|
+
"title": "Details van de dataset"
|
|
35
|
+
},
|
|
36
|
+
"title": "Dataset"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"evaluation": {
|
|
40
|
+
"addEvaluation": {
|
|
41
|
+
"confirm": "Nieuw aanmaken",
|
|
42
|
+
"datasetId": {
|
|
43
|
+
"placeholder": "Selecteer uw evaluatiedataset",
|
|
44
|
+
"required": "Selecteer alstublieft een evaluatiedataset"
|
|
45
|
+
},
|
|
46
|
+
"description": {
|
|
47
|
+
"placeholder": "Beschrijving van de evaluatietaak (optioneel)"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"placeholder": "Naam van de evaluatietaak",
|
|
51
|
+
"required": "Vul alstublieft de naam van de evaluatietaak in"
|
|
52
|
+
},
|
|
53
|
+
"title": "Evaluatietaak toevoegen"
|
|
54
|
+
},
|
|
55
|
+
"addNewButton": "Evaluatie aanmaken",
|
|
56
|
+
"emptyGuide": "De huidige evaluatietaak is leeg, begin met het aanmaken van een evaluatie.",
|
|
57
|
+
"table": {
|
|
58
|
+
"columns": {
|
|
59
|
+
"actions": {
|
|
60
|
+
"checkStatus": "Controleer status",
|
|
61
|
+
"confirmDelete": "Weet u zeker dat u deze evaluatie wilt verwijderen?",
|
|
62
|
+
"confirmRun": "Weet u zeker dat u wilt starten? Na het starten wordt de evaluatietaak asynchroon op de achtergrond uitgevoerd, het sluiten van de pagina heeft geen invloed op de uitvoering van de asynchrone taak.",
|
|
63
|
+
"downloadRecords": "Evaluatie downloaden",
|
|
64
|
+
"retry": "Opnieuw proberen",
|
|
65
|
+
"run": "Uitvoeren",
|
|
66
|
+
"title": "Acties"
|
|
67
|
+
},
|
|
68
|
+
"datasetId": {
|
|
69
|
+
"title": "Dataset"
|
|
70
|
+
},
|
|
71
|
+
"name": {
|
|
72
|
+
"title": "Naam van de evaluatietaak"
|
|
73
|
+
},
|
|
74
|
+
"records": {
|
|
75
|
+
"title": "Aantal evaluatieregisters"
|
|
76
|
+
},
|
|
77
|
+
"referenceFiles": {
|
|
78
|
+
"title": "Referentiebestanden"
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"error": "Uitvoering fout",
|
|
82
|
+
"pending": "Te uitvoeren",
|
|
83
|
+
"processing": "Bezig met uitvoeren",
|
|
84
|
+
"success": "Uitvoering succesvol",
|
|
85
|
+
"title": "Status"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"title": "Lijst van evaluatietaken"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|