diff --git a/lib/features/ai/presentation/pages/ai_page.dart b/lib/features/ai/presentation/pages/ai_page.dart index 044011c4..a4fcdfa2 100644 --- a/lib/features/ai/presentation/pages/ai_page.dart +++ b/lib/features/ai/presentation/pages/ai_page.dart @@ -49,7 +49,7 @@ class _AiViewState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: const Text('AI'), + title: const Text('AI智能体'), actions: [ PopupMenuButton( onSelected: (value) { @@ -60,8 +60,8 @@ class _AiViewState extends State { } }, itemBuilder: (BuildContext context) => >[ - const PopupMenuItem(value: 'new_session', child: Text('New Session')), - const PopupMenuItem(value: 'history', child: Text('History')), + const PopupMenuItem(value: 'new_session', child: Text('开启新的会话')), + const PopupMenuItem(value: 'history', child: Text('历史会话')), ], ), ],