From 027b71a4827580f92efd3395a63d95824607b7fd Mon Sep 17 00:00:00 2001 From: Songzex <2402265378@qq.com> Date: Wed, 4 Mar 2026 10:46:32 +0800 Subject: [PATCH] =?UTF-8?q?AI=E6=99=BA=E8=83=BD=E4=BD=93=E7=9A=84=E5=BC=80?= =?UTF-8?q?=E5=90=AF=E6=96=B0=E7=9A=84=E4=BC=9A=E8=AF=9D=E5=92=8C=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E4=BC=9A=E8=AF=9D=E7=9A=84=E4=B8=AD=E6=96=87=E7=9A=84?= =?UTF-8?q?=E5=8F=8B=E5=A5=BD=E6=8F=90=E7=A4=BA=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/features/ai/presentation/pages/ai_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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('历史会话')), ], ), ],