@windward/integrations 0.15.0 → 0.17.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.
- package/CHANGELOG.md +15 -0
- package/components/Integration/AiAgentIntegration/ChatWindow.vue +916 -0
- package/components/LLM/BloomTaxonomySelector.vue +120 -0
- package/components/LLM/ContentSelector.vue +66 -0
- package/components/LLM/GenerateContent/AssessmentQuestionGenerateButton.vue +285 -0
- package/components/LLM/GenerateContent/BlockQuestionGenerateButton.vue +514 -0
- package/components/LLM/GenerateContent/FakeTextStream.vue +67 -0
- package/i18n/en-US/components/ai_agent/chat.ts +20 -0
- package/i18n/en-US/components/ai_agent/index.ts +5 -0
- package/i18n/en-US/components/index.ts +4 -0
- package/i18n/en-US/components/llm/blooms.ts +15 -0
- package/i18n/en-US/components/llm/content_selector.ts +3 -0
- package/i18n/en-US/components/llm/generate_content/fake_text_stream.ts +62 -0
- package/i18n/en-US/components/llm/generate_content/generate_questions.ts +81 -0
- package/i18n/en-US/components/llm/generate_content/index.ts +7 -0
- package/i18n/en-US/components/llm/index.ts +10 -0
- package/i18n/en-US/shared/permission.ts +10 -0
- package/i18n/en-US/shared/settings.ts +2 -1
- package/i18n/es-ES/components/ai_agent/chat.ts +20 -0
- package/i18n/es-ES/components/ai_agent/index.ts +5 -0
- package/i18n/es-ES/components/index.ts +4 -0
- package/i18n/es-ES/components/llm/blooms.ts +15 -0
- package/i18n/es-ES/components/llm/content_selector.ts +3 -0
- package/i18n/es-ES/components/llm/generate_content/fake_text_stream.ts +62 -0
- package/i18n/es-ES/components/llm/generate_content/generate_questions.ts +85 -0
- package/i18n/es-ES/components/llm/generate_content/index.ts +7 -0
- package/i18n/es-ES/components/llm/index.ts +10 -0
- package/i18n/es-ES/shared/permission.ts +10 -0
- package/i18n/es-ES/shared/settings.ts +2 -1
- package/i18n/sv-SE/components/ai_agent/chat.ts +19 -0
- package/i18n/sv-SE/components/ai_agent/index.ts +5 -0
- package/i18n/sv-SE/components/index.ts +4 -0
- package/i18n/sv-SE/components/llm/blooms.ts +15 -0
- package/i18n/sv-SE/components/llm/content_selector.ts +3 -0
- package/i18n/sv-SE/components/llm/generate_content/fake_text_stream.ts +62 -0
- package/i18n/sv-SE/components/llm/generate_content/generate_questions.ts +82 -0
- package/i18n/sv-SE/components/llm/generate_content/index.ts +7 -0
- package/i18n/sv-SE/components/llm/index.ts +10 -0
- package/i18n/sv-SE/shared/permission.ts +10 -0
- package/i18n/sv-SE/shared/settings.ts +1 -0
- package/models/Activity.ts +8 -0
- package/models/AgentChat.ts +12 -0
- package/models/AgentChatMessage.ts +12 -0
- package/package.json +2 -1
- package/plugin.js +34 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
options: [
|
|
3
|
+
'Navigating neural network',
|
|
4
|
+
'Consulting the Oracle',
|
|
5
|
+
'Consulting the hivemind',
|
|
6
|
+
'Thinking...',
|
|
7
|
+
'Generating Reponse',
|
|
8
|
+
'Traversing AI Mindscape',
|
|
9
|
+
'Synthesizing response',
|
|
10
|
+
'Compiling best-fit solution',
|
|
11
|
+
'Evaluating probabilities',
|
|
12
|
+
'Reticulating splines',
|
|
13
|
+
'Silicon thoughts in progress...',
|
|
14
|
+
'Arranging zeros and ones',
|
|
15
|
+
'Accessing the cumulus',
|
|
16
|
+
'Artificially looking smart',
|
|
17
|
+
'Contemplating the infinite',
|
|
18
|
+
'Translating bytes',
|
|
19
|
+
'Convincing the data',
|
|
20
|
+
'Initiating artificual logic',
|
|
21
|
+
'Thoughts Buffering...',
|
|
22
|
+
'Checking well of artificial wisdom',
|
|
23
|
+
'Circling back on recursive notes.',
|
|
24
|
+
'Wrestling GPU Market',
|
|
25
|
+
'Setting power to 1.21 Gigawatts',
|
|
26
|
+
'Fishing data from the stream',
|
|
27
|
+
'Consulting stars',
|
|
28
|
+
"Checking Schrödinger's cat",
|
|
29
|
+
'Negotiating with coffee machine',
|
|
30
|
+
'Orbiting the question. Landing soon',
|
|
31
|
+
'Dusting off ancient scrolls',
|
|
32
|
+
'Talking to the ethernet ports',
|
|
33
|
+
'Spinning up hamster wheels',
|
|
34
|
+
"The hamster's getting tired",
|
|
35
|
+
'Decoding cosmic typo',
|
|
36
|
+
'Syncing vibes',
|
|
37
|
+
'Herding electrons',
|
|
38
|
+
'Searching under couch for answers',
|
|
39
|
+
'Interrogating data',
|
|
40
|
+
'Recalibrating electron flux',
|
|
41
|
+
'Arguing with autocorrect',
|
|
42
|
+
'Asking Clippy for answers',
|
|
43
|
+
'Calculating dramatic pause...',
|
|
44
|
+
'Shaking magic 8 ball',
|
|
45
|
+
'Patching plot holes',
|
|
46
|
+
'Rebooting the router...',
|
|
47
|
+
'Turning it off and on again',
|
|
48
|
+
'Almost there. Probably. Maybe.',
|
|
49
|
+
'Flipping digital coin',
|
|
50
|
+
'Thinking outside simulated box',
|
|
51
|
+
'Adding sauce to spaghetti code',
|
|
52
|
+
'Herding digital cats',
|
|
53
|
+
'Defragmenting decisions',
|
|
54
|
+
'Listening to dial-up noises',
|
|
55
|
+
'Encrypting awkward silence',
|
|
56
|
+
'Asking toaster for advice',
|
|
57
|
+
'Charging joke generator',
|
|
58
|
+
'Polishing ones and zeroes',
|
|
59
|
+
'Stretching virtual legs',
|
|
60
|
+
'Consulting mood ring logs',
|
|
61
|
+
],
|
|
62
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
errors: {
|
|
3
|
+
default: 'Could not generate question from provided content.',
|
|
4
|
+
default_support:
|
|
5
|
+
'Please try again or contact support if the issue persists.',
|
|
6
|
+
|
|
7
|
+
insufficient_content: 'More content needed to generate questions.',
|
|
8
|
+
insufficient_content_support:
|
|
9
|
+
'Please add more text, examples, or explanations to this section. We recommend at least 50 words of relevant content to generate appropriate questions.',
|
|
10
|
+
|
|
11
|
+
insufficient_content_dynamic:
|
|
12
|
+
'Insufficient content to generate quality questions.',
|
|
13
|
+
insufficient_content_dynamic_support:
|
|
14
|
+
'Please add more detailed text, examples, or explanations to this section. We recommend at least {minimumRequired} words of relevant content to generate appropriate questions.',
|
|
15
|
+
|
|
16
|
+
content_mismatch: "Content doesn't match question type.",
|
|
17
|
+
content_mismatch_support:
|
|
18
|
+
"The current content isn't suitable for this type of question. Consider adding more specific examples, numerical data, or comparable items depending on your desired question type.",
|
|
19
|
+
|
|
20
|
+
content_mismatch_bucket_game: 'Content not suitable for bucket games.',
|
|
21
|
+
content_mismatch_bucket_game_support:
|
|
22
|
+
'Consider adding content with clear categories and multiple sortable items that can be grouped into 2-4 distinct buckets.',
|
|
23
|
+
|
|
24
|
+
content_mismatch_matching_game:
|
|
25
|
+
'Content not suitable for matching games.',
|
|
26
|
+
content_mismatch_matching_game_support:
|
|
27
|
+
'Consider adding content that explicitly defines relationships between terms, concepts, or categories that students can match.',
|
|
28
|
+
|
|
29
|
+
content_mismatch_sorting_game:
|
|
30
|
+
'Content not suitable for sorting games.',
|
|
31
|
+
content_mismatch_sorting_game_support:
|
|
32
|
+
'Consider adding content with sequential steps, chronological events, or items that have a clear logical order for students to arrange.',
|
|
33
|
+
|
|
34
|
+
content_mismatch_scenario_game:
|
|
35
|
+
'Content not suitable for scenario games.',
|
|
36
|
+
content_mismatch_scenario_game_support:
|
|
37
|
+
'Consider adding content that describes concepts, processes, or principles that can be applied in real-world scenarios.',
|
|
38
|
+
|
|
39
|
+
content_mismatch_word_jumble:
|
|
40
|
+
'Content not suitable for word jumble games.',
|
|
41
|
+
content_mismatch_word_jumble_support:
|
|
42
|
+
'Consider adding content with clear vocabulary terms, glossary words, or key concepts that can be unscrambled.',
|
|
43
|
+
|
|
44
|
+
content_mismatch_multiple_choice:
|
|
45
|
+
'Content not suitable for multiple-choice questions.',
|
|
46
|
+
content_mismatch_multiple_choice_support:
|
|
47
|
+
'Consider adding clear expository text with distinct concepts, definitions, or examples that support question and distractor creation.',
|
|
48
|
+
|
|
49
|
+
character_limit:
|
|
50
|
+
'An error occurred while generating content. Try generating again.',
|
|
51
|
+
character_limit_detailed:
|
|
52
|
+
'The {field} exceeds the {limit} character limit (currently {actual} characters). Try generating again with shorter content.',
|
|
53
|
+
|
|
54
|
+
llm_unavailable: 'Question generation temporarily unavailable.',
|
|
55
|
+
llm_unavailable_support:
|
|
56
|
+
"We're unable to connect to our AI service at the moment. Please try again in a few minutes or contact support if the issue persists.",
|
|
57
|
+
|
|
58
|
+
technical: 'Unable to process request.',
|
|
59
|
+
technical_support:
|
|
60
|
+
'Something went wrong on our end. Please try again or contact support if this continues. Reference code: [ERROR_CODE]',
|
|
61
|
+
},
|
|
62
|
+
button_label: 'Generate Question',
|
|
63
|
+
button_label_flashcard: 'Generate Flashcards',
|
|
64
|
+
button_label_bucket_game: 'Generate Buckets',
|
|
65
|
+
button_label_matching_game: 'Generate Matches',
|
|
66
|
+
button_label_sorting_game: 'Generate Items',
|
|
67
|
+
button_label_scenario_game: 'Generate Scenarios',
|
|
68
|
+
button_label_word_jumble: 'Generate Items',
|
|
69
|
+
button_label_seven_strikes: 'Generate Items',
|
|
70
|
+
button_label_multiple_choice: 'Generate Questions',
|
|
71
|
+
|
|
72
|
+
replace_existing_flashcard: 'Replace existing flashcards',
|
|
73
|
+
replace_existing_bucket_game: 'Replace existing buckets',
|
|
74
|
+
replace_existing_matching_game: 'Replace Existing Matches',
|
|
75
|
+
replace_existing_sorting_game: 'Replace existing items',
|
|
76
|
+
replace_existing_word_jumble: 'Replace existing words',
|
|
77
|
+
replace_existing_multiple_choice: 'Replace existing questions',
|
|
78
|
+
replace_existing: 'Replace Existing',
|
|
79
|
+
|
|
80
|
+
replaces_content: 'Replaces current block content.',
|
|
81
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import generateContent from './generate_content'
|
|
2
|
+
import blooms from './blooms'
|
|
3
|
+
import contentSelector from './content_selector'
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
ai_assistance: 'AI Assistance',
|
|
7
|
+
generate_content: generateContent,
|
|
8
|
+
blooms,
|
|
9
|
+
content_selector: contentSelector,
|
|
10
|
+
}
|
|
@@ -10,6 +10,16 @@ export default {
|
|
|
10
10
|
'plugin->windward->integrations->content': 'Content Integrations',
|
|
11
11
|
'plugin->windward->integrations->course->externalIntegration':
|
|
12
12
|
'External Integrations (LTI / SCORM / etc)',
|
|
13
|
+
'plugin->windward->integrations->ai':
|
|
14
|
+
'Global Generative AI permissions ',
|
|
15
|
+
'plugin->windward->integrations->ai->integration':
|
|
16
|
+
'AI Prompt changing permissions',
|
|
17
|
+
'plugin->windward->integrations->organization->ai':
|
|
18
|
+
'Generative AI Permissions in only the users current org',
|
|
19
|
+
'plugin->windward->integrations->organization->aiAgentChat':
|
|
20
|
+
'Allow Access To AI Agent',
|
|
21
|
+
'plugin->windward->integrations->organization->course->ai':
|
|
22
|
+
'Generative AI Permissions in only the users current org and course for content generation',
|
|
13
23
|
},
|
|
14
24
|
|
|
15
25
|
type_description: {
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
new_chat: 'Nuevo chat',
|
|
3
|
+
recent_chats: 'Chats recientes',
|
|
4
|
+
untitled_chat: 'Chat sin título',
|
|
5
|
+
no_history: 'No hay chats recientes',
|
|
6
|
+
system_tip:
|
|
7
|
+
'¡Hola! Estoy aquí para ayudarte con tu curso. Prueba a preguntar sobre objetivos de aprendizaje, estructura del contenido o buenas prácticas.',
|
|
8
|
+
placeholder: 'Pregunta sobre el contenido de tu curso...',
|
|
9
|
+
hint: 'Pulsa Enter para enviar, Shift+Enter para nueva línea',
|
|
10
|
+
error_generic: 'Algo salió mal. Por favor, inténtalo de nuevo.',
|
|
11
|
+
error_with_status:
|
|
12
|
+
'Algo salió mal. Por favor, inténtalo de nuevo. (Error {status})',
|
|
13
|
+
action_try_again: 'Intentar de nuevo',
|
|
14
|
+
action_dismiss: 'Descartar',
|
|
15
|
+
sender_you: 'Tú',
|
|
16
|
+
sender_agent: 'Asistente',
|
|
17
|
+
limit_reached:
|
|
18
|
+
'Ha alcanzado el número máximo de mensajes permitidos en este chat. Por favor, inicie un chat nuevo para continuar.',
|
|
19
|
+
aria_open_history: 'Abrir historial de chat',
|
|
20
|
+
}
|
|
@@ -4,12 +4,16 @@ import navigation from './navigation'
|
|
|
4
4
|
import integration from './integration'
|
|
5
5
|
import externalIntegration from './external_integration'
|
|
6
6
|
import fileImport from './file_import'
|
|
7
|
+
import aiAgent from './ai_agent'
|
|
8
|
+
import llm from './llm'
|
|
7
9
|
|
|
8
10
|
export default {
|
|
9
11
|
content,
|
|
10
12
|
settings,
|
|
11
13
|
navigation,
|
|
12
14
|
integration,
|
|
15
|
+
llm,
|
|
13
16
|
external_integration: externalIntegration,
|
|
14
17
|
file_import: fileImport,
|
|
18
|
+
ai_agent: aiAgent,
|
|
15
19
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
blooms_taxonomy: 'Nivel de taxonomía de Bloom',
|
|
3
|
+
none: 'Ninguno seleccionado',
|
|
4
|
+
remember: 'Recordar',
|
|
5
|
+
understand: 'Entender',
|
|
6
|
+
apply: 'Aplicar',
|
|
7
|
+
analyze: 'Analizar',
|
|
8
|
+
evaluate: 'Evaluar',
|
|
9
|
+
errors: {
|
|
10
|
+
insufficient_content_blooms:
|
|
11
|
+
'Contenido insuficiente para generar preguntas de calidad en el nivel de {bloomsLevel}.',
|
|
12
|
+
insufficient_content_blooms_support:
|
|
13
|
+
'Por favor, agregue texto más detallado, ejemplos o explicaciones a esta sección. Recomendamos al menos {minimumRequired} palabras de contenido relevante para generar preguntas apropiadas en este nivel.',
|
|
14
|
+
},
|
|
15
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
options: [
|
|
3
|
+
'Navegando por la red neuronal',
|
|
4
|
+
'Consultando al Oráculo',
|
|
5
|
+
'Consultando a la mente colectiva',
|
|
6
|
+
'Pensando...',
|
|
7
|
+
'Generando respuesta',
|
|
8
|
+
'Recorriendo el paisaje mental de la IA',
|
|
9
|
+
'Sintetizando la respuesta',
|
|
10
|
+
'Compilando la solución más adecuada',
|
|
11
|
+
'Evaluando probabilidades',
|
|
12
|
+
'Reticulando splines',
|
|
13
|
+
'Pensamientos de silicio en curso...',
|
|
14
|
+
'Organizando ceros y unos',
|
|
15
|
+
'Accediendo al cúmulo',
|
|
16
|
+
'Luciendo inteligente artificialmente',
|
|
17
|
+
'Contemplando el infinito',
|
|
18
|
+
'Traduciendo bytes',
|
|
19
|
+
'Convenciendo a los datos',
|
|
20
|
+
'Iniciando lógica artificial',
|
|
21
|
+
'Pensamientos Buffering...',
|
|
22
|
+
'Comprobando el pozo de sabiduría artificial',
|
|
23
|
+
'Retomando las notas recursivas',
|
|
24
|
+
'Lucha contra el mercado de GPU',
|
|
25
|
+
'Ajustando la potencia a 1,21 gigavatios',
|
|
26
|
+
'Explorando datos del flujo',
|
|
27
|
+
'Consultando estrellas',
|
|
28
|
+
'Comprobando el gato de Schrödinger',
|
|
29
|
+
'Negociando con la máquina de café',
|
|
30
|
+
'Orbitando la pregunta. Aterrizando pronto',
|
|
31
|
+
'Desempolvando pergaminos antiguos',
|
|
32
|
+
'Hablando con los puertos Ethernet',
|
|
33
|
+
'Girando ruedas de hámster',
|
|
34
|
+
'Los hámsteres se están cansando',
|
|
35
|
+
'Descifrando un error tipográfico cósmico',
|
|
36
|
+
'Sincronizando vibraciones',
|
|
37
|
+
'Arreando electrones',
|
|
38
|
+
'Buscando respuestas bajo el sofá',
|
|
39
|
+
'Interrogando datos',
|
|
40
|
+
'Recalibrando el flujo de electrones',
|
|
41
|
+
'Discutiendo con el autocorrector',
|
|
42
|
+
'Preguntando a Clippy por respuestas',
|
|
43
|
+
'Calculando pausas dramáticas...',
|
|
44
|
+
'Agitando la bola mágica 8',
|
|
45
|
+
'Remendando agujeros en la trama',
|
|
46
|
+
'Reiniciando el router...',
|
|
47
|
+
'Apagándolo y volviéndolo a encender',
|
|
48
|
+
'Ya casi. Probablemente. Quizás',
|
|
49
|
+
'Lanzando una moneda digital',
|
|
50
|
+
'Pensando fuera de la caja simulada',
|
|
51
|
+
'Añadiendo salsa al código de espagueti',
|
|
52
|
+
'Arreando gatos digitales',
|
|
53
|
+
'Desfragmentando decisiones',
|
|
54
|
+
'Escuchando ruidos de acceso telefónico',
|
|
55
|
+
'Encriptando silencios incómodos',
|
|
56
|
+
'Pediendo consejo a la tostadora',
|
|
57
|
+
'Cargando el generador de chistes',
|
|
58
|
+
'Pulindo unos y ceros',
|
|
59
|
+
'Estirando piernas virtuales',
|
|
60
|
+
'Consultando registros de anillos de humor',
|
|
61
|
+
],
|
|
62
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
errors: {
|
|
3
|
+
default:
|
|
4
|
+
'No se pudo generar la pregunta a partir del contenido proporcionado.',
|
|
5
|
+
default_support:
|
|
6
|
+
'Inténtalo de nuevo o ponte en contacto con el servicio de asistencia si el problema persiste.',
|
|
7
|
+
|
|
8
|
+
insufficient_content:
|
|
9
|
+
'Se necesita más contenido para generar preguntas.',
|
|
10
|
+
insufficient_content_support:
|
|
11
|
+
'Agregue más texto, ejemplos o explicaciones a esta sección. Recomendamos al menos 2 o 3 párrafos de contenido.',
|
|
12
|
+
|
|
13
|
+
insufficient_content_dynamic:
|
|
14
|
+
'Contenido insuficiente para generar preguntas de calidad.',
|
|
15
|
+
insufficient_content_dynamic_support:
|
|
16
|
+
'Por favor, agregue texto más detallado, ejemplos o explicaciones a esta sección. Recomendamos al menos {minimumRequired} palabras de contenido relevante para generar preguntas apropiadas.',
|
|
17
|
+
|
|
18
|
+
content_mismatch: 'El contenido no coincide con el tipo de pregunta.',
|
|
19
|
+
content_mismatch_support:
|
|
20
|
+
'Por favor, añada más texto, ejemplos o explicaciones a esta sección. Recomendamos al menos 50 palabras de contenido relevante para generar preguntas apropiadas.',
|
|
21
|
+
|
|
22
|
+
content_mismatch_bucket_game:
|
|
23
|
+
'El contenido no es adecuado para juegos de categorías.',
|
|
24
|
+
content_mismatch_bucket_game_support:
|
|
25
|
+
'Considera agregar contenido con categorías claras y múltiples elementos clasificables que se puedan agrupar en 2-4 categorías distintas.',
|
|
26
|
+
|
|
27
|
+
content_mismatch_matching_game:
|
|
28
|
+
'El contenido no es adecuado para juegos de emparejamiento.',
|
|
29
|
+
content_mismatch_matching_game_support:
|
|
30
|
+
'Considera agregar contenido que defina explícitamente relaciones entre términos, conceptos o categorías que los estudiantes puedan emparejar.',
|
|
31
|
+
|
|
32
|
+
content_mismatch_sorting_game:
|
|
33
|
+
'El contenido no es adecuado para juegos de ordenamiento.',
|
|
34
|
+
content_mismatch_sorting_game_support:
|
|
35
|
+
'Considera agregar contenido con pasos secuenciales, eventos cronológicos o elementos que tengan un orden lógico claro para que los estudiantes los organicen.',
|
|
36
|
+
|
|
37
|
+
content_mismatch_scenario_game:
|
|
38
|
+
'El contenido no es adecuado para juegos de escenarios.',
|
|
39
|
+
content_mismatch_scenario_game_support:
|
|
40
|
+
'Considera agregar contenido que describa conceptos, procesos o principios que se puedan aplicar en escenarios del mundo real.',
|
|
41
|
+
|
|
42
|
+
content_mismatch_word_jumble:
|
|
43
|
+
'El contenido no es adecuado para juegos de revoltijo de palabras.',
|
|
44
|
+
content_mismatch_word_jumble_support:
|
|
45
|
+
'Considera agregar contenido con términos de vocabulario claros, palabras de glosario o conceptos clave que puedan ser desordenados.',
|
|
46
|
+
|
|
47
|
+
content_mismatch_multiple_choice:
|
|
48
|
+
'Contenido no adecuado para preguntas de opción múltiple.',
|
|
49
|
+
content_mismatch_multiple_choice_support:
|
|
50
|
+
'Considere agregar texto expositivo claro con conceptos, definiciones o ejemplos distintos que respalden la creación de preguntas y distractores.',
|
|
51
|
+
|
|
52
|
+
character_limit:
|
|
53
|
+
'Se produjo un error al generar el contenido. Intenta generar de nuevo.',
|
|
54
|
+
character_limit_detailed:
|
|
55
|
+
'El campo {field} excede el límite de {limit} caracteres (actualmente {actual} caracteres). Intenta generar de nuevo con contenido más corto.',
|
|
56
|
+
|
|
57
|
+
llm_unavailable:
|
|
58
|
+
'La generación de preguntas no está disponible temporalmente.',
|
|
59
|
+
llm_unavailable_support:
|
|
60
|
+
'No podemos conectarnos a nuestro servicio de IA en este momento. Inténtalo nuevamente en unos minutos.',
|
|
61
|
+
|
|
62
|
+
technical: 'No se puede procesar la solicitud.',
|
|
63
|
+
technical_support:
|
|
64
|
+
'Algo salió mal. Inténtalo de nuevo o ponte en contacto con el servicio de asistencia si el problema persiste.',
|
|
65
|
+
},
|
|
66
|
+
button_label: 'Generar pregunta',
|
|
67
|
+
button_label_flashcard: 'Generar tarjetas',
|
|
68
|
+
button_label_bucket_game: 'Generar categorías',
|
|
69
|
+
button_label_matching_game: 'Generar coincidencias',
|
|
70
|
+
button_label_sorting_game: 'Generar elementos',
|
|
71
|
+
button_label_scenario_game: 'Generar escenarios',
|
|
72
|
+
button_label_word_jumble: 'Generar elementos',
|
|
73
|
+
button_label_seven_strikes: 'Generar elementos',
|
|
74
|
+
button_label_multiple_choice: 'Generar preguntas',
|
|
75
|
+
|
|
76
|
+
replace_existing_flashcard: 'Ersätt befintliga objekt',
|
|
77
|
+
replace_existing_bucket_game: 'Reemplazar cubos existentes',
|
|
78
|
+
replace_existing_matching_game: 'Reemplazar coincidencias existentes',
|
|
79
|
+
replace_existing_sorting_game: 'Reemplazar elementos existentes',
|
|
80
|
+
replace_existing_word_jumble: 'Reemplazar palabras existentes',
|
|
81
|
+
replace_existing_multiple_choice: 'Reemplazar preguntas existentes',
|
|
82
|
+
replace_existing: 'Reemplazar existente',
|
|
83
|
+
|
|
84
|
+
replaces_content: 'Reemplaza el contenido del bloque actual.',
|
|
85
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import generateContent from './generate_content'
|
|
2
|
+
import blooms from './blooms'
|
|
3
|
+
import contentSelector from './content_selector'
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
ai_assistance: 'Asistencia de IA',
|
|
7
|
+
generate_content: generateContent,
|
|
8
|
+
blooms,
|
|
9
|
+
content_selector: contentSelector,
|
|
10
|
+
}
|
|
@@ -10,6 +10,16 @@ export default {
|
|
|
10
10
|
'plugin->windward->integrations->content': 'Integraciones de contenido',
|
|
11
11
|
'plugin->windward->integrations->course->externalIntegration':
|
|
12
12
|
'Integraciones externas (LTI/SCORM/etc)',
|
|
13
|
+
'plugin->windward->integrations->ai':
|
|
14
|
+
'Permisos globales de IA generativa',
|
|
15
|
+
'plugin->windward->integrations->ai->integration':
|
|
16
|
+
'Permisos para cambiar indicaciones de IA',
|
|
17
|
+
'plugin->windward->integrations->organization->ai':
|
|
18
|
+
'Permisos de IA generativa solo en la organización actual del usuario',
|
|
19
|
+
'plugin->windward->integrations->organization->aiAgentChat':
|
|
20
|
+
'Permitir acceso al agente de IA',
|
|
21
|
+
'plugin->windward->integrations->organization->course->ai':
|
|
22
|
+
'Permisos de IA generativa solo en la organización y curso actual del usuario para la generación de contenido',
|
|
13
23
|
},
|
|
14
24
|
|
|
15
25
|
type_description: {
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
new_chat: 'Ny chatt',
|
|
3
|
+
recent_chats: 'Senaste chattar',
|
|
4
|
+
untitled_chat: 'Namnlös chatt',
|
|
5
|
+
no_history: 'Inga senaste chattar',
|
|
6
|
+
system_tip:
|
|
7
|
+
'Hej! Jag är här för att hjälpa till med din kurs. Fråga gärna om lärandemål, innehållsstruktur eller bästa praxis.',
|
|
8
|
+
placeholder: 'Fråga om ditt kursinnehåll...',
|
|
9
|
+
hint: 'Tryck Enter för att skicka, Skift+Enter för ny rad',
|
|
10
|
+
error_generic: 'Något gick fel. Försök igen.',
|
|
11
|
+
error_with_status: 'Något gick fel. Försök igen. (Fel {status})',
|
|
12
|
+
action_try_again: 'Försök igen',
|
|
13
|
+
action_dismiss: 'Avfärda',
|
|
14
|
+
sender_you: 'Du',
|
|
15
|
+
sender_agent: 'Assistent',
|
|
16
|
+
limit_reached:
|
|
17
|
+
'Du har nått det maximala antalet tillåtna meddelanden i den här chatten. Starta en ny chatt för att fortsätta.',
|
|
18
|
+
aria_open_history: 'Öppna chatthistorik',
|
|
19
|
+
}
|
|
@@ -4,12 +4,16 @@ import navigation from './navigation'
|
|
|
4
4
|
import integration from './integration'
|
|
5
5
|
import externalIntegration from './external_integration'
|
|
6
6
|
import fileImport from './file_import'
|
|
7
|
+
import aiAgent from './ai_agent'
|
|
8
|
+
import llm from './llm'
|
|
7
9
|
|
|
8
10
|
export default {
|
|
9
11
|
content,
|
|
10
12
|
settings,
|
|
11
13
|
navigation,
|
|
12
14
|
integration,
|
|
15
|
+
llm,
|
|
13
16
|
external_integration: externalIntegration,
|
|
14
17
|
file_import: fileImport,
|
|
18
|
+
ai_agent: aiAgent,
|
|
15
19
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
blooms_taxonomy: 'Blooms taxonominivå',
|
|
3
|
+
none: 'Ingen vald',
|
|
4
|
+
remember: 'Komma ihåg',
|
|
5
|
+
understand: 'Förstå',
|
|
6
|
+
apply: 'Tillämpas',
|
|
7
|
+
analyze: 'Analysera',
|
|
8
|
+
evaluate: 'Utvärdera',
|
|
9
|
+
errors: {
|
|
10
|
+
insufficient_content_blooms:
|
|
11
|
+
'Otillräckligt innehåll för att generera kvalitetsfrågor på {bloomsLevel}-nivån.',
|
|
12
|
+
insufficient_content_blooms_support:
|
|
13
|
+
'Vänligen lägg till mer detaljerad text, exempel eller förklaringar till detta avsnitt. Vi rekommenderar minst {minimumRequired} ord av relevant innehåll för att generera lämpliga frågor på denna nivå.',
|
|
14
|
+
},
|
|
15
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
options: [
|
|
3
|
+
'Navigera neurala nätverk',
|
|
4
|
+
'Konsultera oraklet',
|
|
5
|
+
'Konsultera hivemind',
|
|
6
|
+
'Tänka...',
|
|
7
|
+
'Generera svar',
|
|
8
|
+
'Gå igenom AI-tankelandskapet',
|
|
9
|
+
'Syntetisera svar',
|
|
10
|
+
'Kompilera bäst anpassade lösningar',
|
|
11
|
+
'Utvärdera sannolikheter',
|
|
12
|
+
'Retikulera splines',
|
|
13
|
+
'Kiseltankar pågår...',
|
|
14
|
+
'Arrangera nollor och ettor',
|
|
15
|
+
'Åtkomst till cumulus',
|
|
16
|
+
'Se smart ut på konstgjort sätt',
|
|
17
|
+
'Begrunda det oändliga',
|
|
18
|
+
'Översätta byte',
|
|
19
|
+
'Övertyga data',
|
|
20
|
+
'Initiera artificiell logik',
|
|
21
|
+
'Tankar buffrar...',
|
|
22
|
+
'Kontrollera väl av artificiell visdom',
|
|
23
|
+
'Tillbaka till rekursiva toner.',
|
|
24
|
+
'Brottas med GPU-marknaden',
|
|
25
|
+
'Ställer in effekten till 1,21 gigawatt',
|
|
26
|
+
'Fisker data från strömmen',
|
|
27
|
+
'Konsulterar stjärnor',
|
|
28
|
+
'Kontrollerar Schrödingers katt',
|
|
29
|
+
'Förhandlar med kaffemaskinen',
|
|
30
|
+
'Kretsar runt frågan. Landar snart',
|
|
31
|
+
'Dammtorkar av gamla skriftrullar',
|
|
32
|
+
'Prater med ethernetportarna',
|
|
33
|
+
'Snurrar upp hamsterhjulen',
|
|
34
|
+
'Hamstrarna blir trötta',
|
|
35
|
+
'Avkodar kosmiska stavfel',
|
|
36
|
+
'Synkronisera vibrationer',
|
|
37
|
+
'Vallar elektroner',
|
|
38
|
+
'Letar under soffan efter svar',
|
|
39
|
+
'Förhör data',
|
|
40
|
+
'Omkalibrerar elektronflödet',
|
|
41
|
+
'Argumenterar med autokorrigering',
|
|
42
|
+
'Be Clippy om svar',
|
|
43
|
+
'Beräknar dramatisk paus...',
|
|
44
|
+
'Skakar magisk 8-boll',
|
|
45
|
+
'Laggar plothål',
|
|
46
|
+
'Startar om routern...',
|
|
47
|
+
'Stänger av och sätter på den igen',
|
|
48
|
+
'Nästan där. Förmodligen. Kanske.',
|
|
49
|
+
'Vänder digitala mynt',
|
|
50
|
+
'Tänker utanför den simulerade boxen',
|
|
51
|
+
'Lägger till sås i spaghettikod',
|
|
52
|
+
'Vallar digitala katter',
|
|
53
|
+
'Defragmenterar beslut',
|
|
54
|
+
'Lyssnar på uppringningsljud',
|
|
55
|
+
'Krypterar pinsam tystnad',
|
|
56
|
+
'Be brödrost om råd',
|
|
57
|
+
'Laddar skämtgeneratorn',
|
|
58
|
+
'Polerar ettor och nollor',
|
|
59
|
+
'Sträcker virtuella ben',
|
|
60
|
+
'Konsulterar humörringarloggar',
|
|
61
|
+
],
|
|
62
|
+
}
|