@@ -10,6 +10,7 @@ import { groupedMessagesAtom, messagesAtom } from '@/common/state/atoms/message'
1010import { replayStateAtom } from '@/common/state/atoms/replay' ;
1111import { useReplayMode } from '@/common/hooks/useReplayMode' ;
1212import { useReplay } from '@/common/hooks/useReplay' ;
13+ import { getAgentTitle } from '@/common/constants' ;
1314
1415import './ChatPanel.css' ;
1516import { ResearchReportEntry } from './ResearchReportEntry' ;
@@ -196,7 +197,7 @@ export const ChatPanel: React.FC = () => {
196197 variants = { itemVariants }
197198 className = "text-xl font-display font-bold mb-3 text-gray-800 dark:text-gray-200"
198199 >
199- Welcome to Agent TARS
200+ Welcome to { getAgentTitle ( ) }
200201 </ motion . h2 >
201202 < motion . p
202203 variants = { itemVariants }
@@ -211,7 +212,8 @@ export const ChatPanel: React.FC = () => {
211212 >
212213 < FiInfo className = "mr-3 text-gray-400 flex-shrink-0" />
213214 < span >
214- TARS can help with tasks involving web search, browsing, and file operations.
215+ { getAgentTitle ( ) } can help with tasks involving web search, browsing, and file
216+ operations.
215217 </ span >
216218 </ motion . div >
217219 </ div >
@@ -298,7 +300,7 @@ export const ChatPanel: React.FC = () => {
298300 < p className = "text-gray-600 dark:text-gray-400 text-sm" >
299301 { isReplayMode && replayState . currentEventIndex === - 1
300302 ? 'Press play to start the replay or use the timeline to navigate'
301- : ' Ask Agent TARS a question or provide a command to begin.' }
303+ : ` Ask ${ getAgentTitle ( ) } a question or submit a task.` }
302304 </ p >
303305 </ >
304306 ) }
0 commit comments