Chat-Doku aktualisiert + Tutorial-Einstieg temporaer deaktiviert
- Chat-System-Prompt: Aktualisierungs-Modi (Minuten/Stunden/Tage/Wochen, 10-Min-Minimum, Startzeit), 5 Faktencheck-Status (Bestaetigt, Gesichert, Unbestaetigt, Umstritten, Widerlegt), Export mit PDF/DOCX und Bereichsauswahl - Tutorial-Button in Sidebar auskommentiert (Ueberarbeitung) - Tutorial-Trigger im Chat auskommentiert (Opener-Hinweis und Keyword-Erkennung)
Dieser Commit ist enthalten in:
@@ -67,12 +67,12 @@ const Chat = {
|
||||
this.addMessage('assistant', 'Hallo! Ich bin der AegisSight Assistent. Stell mir gerne jede Frage rund um die Bedienung des Monitors, ich helfe dir weiter.');
|
||||
}
|
||||
|
||||
// Tutorial-Hinweis bei jedem Oeffnen aktualisieren (wenn nicht dismissed)
|
||||
if (typeof Tutorial !== 'undefined' && !this._tutorialHintDismissed) {
|
||||
var oldHint = document.getElementById('chat-tutorial-hint');
|
||||
if (oldHint) oldHint.remove();
|
||||
this._showTutorialHint();
|
||||
}
|
||||
// Tutorial-Hinweis temporaer deaktiviert (Ueberarbeitung) - reaktivieren durch Entfernen der Kommentarzeichen:
|
||||
// if (typeof Tutorial !== 'undefined' && !this._tutorialHintDismissed) {
|
||||
// var oldHint = document.getElementById('chat-tutorial-hint');
|
||||
// if (oldHint) oldHint.remove();
|
||||
// this._showTutorialHint();
|
||||
// }
|
||||
|
||||
// Focus auf Input
|
||||
setTimeout(() => {
|
||||
@@ -137,15 +137,15 @@ const Chat = {
|
||||
this._showTyping();
|
||||
this._isLoading = true;
|
||||
|
||||
// Tutorial-Keywords abfangen
|
||||
var lowerText = text.toLowerCase();
|
||||
if (lowerText === 'rundgang' || lowerText === 'tutorial' || lowerText === 'tour' || lowerText === 'f\u00fchrung') {
|
||||
this._hideTyping();
|
||||
this._isLoading = false;
|
||||
this.close();
|
||||
if (typeof Tutorial !== 'undefined') Tutorial.start();
|
||||
return;
|
||||
}
|
||||
// Tutorial-Keywords temporaer deaktiviert (Ueberarbeitung) - reaktivieren durch Entfernen der Kommentarzeichen:
|
||||
// var lowerText = text.toLowerCase();
|
||||
// if (lowerText === 'rundgang' || lowerText === 'tutorial' || lowerText === 'tour' || lowerText === 'f\u00fchrung') {
|
||||
// this._hideTyping();
|
||||
// this._isLoading = false;
|
||||
// this.close();
|
||||
// if (typeof Tutorial !== 'undefined') Tutorial.start();
|
||||
// return;
|
||||
// }
|
||||
|
||||
try {
|
||||
const body = {
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren