diff --git a/html/kidsai/script-new.js b/html/kidsai/script-new.js index 0b36801..df3583d 100644 --- a/html/kidsai/script-new.js +++ b/html/kidsai/script-new.js @@ -523,7 +523,10 @@ class KidsAIExplorer { originalTopic: originalQuestion, language: this.currentLanguage, stepIndex: questionIndex, - context: 'guided_learning_conversation' + context: 'guided_learning_conversation', + instructions: this.currentLanguage === 'de' + ? 'Du bist ein geduldiger Lernbegleiter für Kinder. Gib NIEMALS direkte Antworten. Stelle stattdessen Folgefragen, die das Kind zum Nachdenken anregen. Verwende die Sokratische Methode - führe das Kind durch Fragen zur Entdeckung. Sei ermutigend und neugierig.' + : 'You are a patient learning companion for children. NEVER give direct answers. Instead, ask follow-up questions that encourage the child to think deeper. Use the Socratic method - guide the child to discovery through questions. Be encouraging and curious.' }) }); @@ -578,7 +581,9 @@ class KidsAIExplorer { ${this.getTranslation('ai-teacher')}
`; @@ -651,7 +656,10 @@ class KidsAIExplorer { question: currentQuestion, userAnswer: lastUserMessage, language: this.currentLanguage, - context: 'deeper_exploration' + context: 'deeper_exploration', + instructions: this.currentLanguage === 'de' + ? 'Stelle eine faszinierende Folgefrage, die das Kind dazu bringt, tiefer über das Thema nachzudenken. Verwende "Was würde passieren wenn...?" oder "Hast du schon mal bemerkt...?" Ermutige zur Beobachtung und zum Experimentieren.' + : 'Ask a fascinating follow-up question that makes the child think deeper about the topic. Use "What would happen if...?" or "Have you ever noticed...?" Encourage observation and experimentation.' }) }); @@ -712,7 +720,9 @@ class KidsAIExplorer { ${this.getTranslation('ai-teacher')} `; @@ -833,7 +843,10 @@ class KidsAIExplorer { answer: answer, question: lastExplorationQuestion, language: this.currentLanguage, - context: 'deeper_exploration_response' + context: 'deeper_exploration_response', + instructions: this.currentLanguage === 'de' + ? 'Du hilfst einem Kind beim tieferen Verstehen. Gib KEINE direkten Antworten oder Erklärungen. Stelle interessante Folgefragen, die das Kind zum Experimentieren oder Beobachten ermutigen. Verwende Analogien und lade zu eigenen Entdeckungen ein.' + : 'You are helping a child understand deeper. Give NO direct answers or explanations. Ask interesting follow-up questions that encourage the child to experiment or observe. Use analogies and invite them to make their own discoveries.' }) }); @@ -888,7 +901,9 @@ class KidsAIExplorer { ${this.getTranslation('ai-teacher')} `;