correctly using this.llmName
This commit is contained in:
parent
d34569d86e
commit
11cd0e6b66
1 changed files with 1 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ class MessagesArea extends HTMLElement {
|
|||
|
||||
if (isLastMessageFromUser) {
|
||||
const header = document.createElement('h2');
|
||||
header.textContent = "Chat GPT" + (type=='error' ? " - Error" : "");
|
||||
header.textContent = this.llmName + (type=='error' ? " - Error" : "");
|
||||
this.messages.appendChild(header);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue