This is an automated email from the ASF dual-hosted git repository. gongchao pushed a commit to branch update-ai-with in repository https://gitbox.apache.org/repos/asf/hertzbeat.git
commit 7b92448172a902ffef4342ee07e2e6b914055d1e Author: tomsun28 <[email protected]> AuthorDate: Thu Oct 30 23:04:32 2025 +0800 [webapp] update ui Signed-off-by: tomsun28 <[email protected]> --- web-app/src/app/shared/components/ai-chat/chat.component.html | 4 ++-- web-app/src/app/shared/components/ai-chat/chat.component.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web-app/src/app/shared/components/ai-chat/chat.component.html b/web-app/src/app/shared/components/ai-chat/chat.component.html index 2224c6967..1b75357af 100644 --- a/web-app/src/app/shared/components/ai-chat/chat.component.html +++ b/web-app/src/app/shared/components/ai-chat/chat.component.html @@ -62,7 +62,7 @@ <h2 *ngIf="currentConversation"> {{ getConversationTitle(currentConversation) }} </h2> - <h2 *ngIf="!currentConversation"> HertzBeat AI Agent </h2> + <h2 *ngIf="!currentConversation"> HertzBeat AI </h2> </div> </div> @@ -82,7 +82,7 @@ <div *ngIf="messages.length === 0 && !isLoading" class="welcome-message"> <div class="welcome-content"> <img [src]="theme === 'dark' ? 'assets/logo_white.svg' : 'assets/logo.svg'" alt="HertzBeat Logo" class="welcome-icon" /> - <h3>Welcome to HertzBeat AI Agent!</h3> + <h3>Welcome to HertzBeat AI!</h3> <p> I'm your intelligent monitoring companion, ready to help you manage and optimize your infrastructure monitoring. You can ask me to: diff --git a/web-app/src/app/shared/components/ai-chat/chat.component.ts b/web-app/src/app/shared/components/ai-chat/chat.component.ts index 73cb5afd0..cd4fb0f0f 100644 --- a/web-app/src/app/shared/components/ai-chat/chat.component.ts +++ b/web-app/src/app/shared/components/ai-chat/chat.component.ts @@ -252,7 +252,7 @@ export class ChatComponent implements OnInit, AfterViewChecked { setTimeout(() => { const offlineMessage: ChatMessage = { content: - 'I apologize, but the AI Chat service is currently unavailable. Please ensure the HertzBeat AI Agent module is running and try again later.', + 'I apologize, but the AI Chat service is currently unavailable. Please ensure the HertzBeat AI module is running and try again later.', role: 'assistant', timestamp: new Date() }; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
