refactor: 重构 Agent 模块为 AgentScope,删除旧版 CrewAI/LiteLLM 实现
This commit is contained in:
@@ -124,7 +124,8 @@ GoRouter createAppRouter(AuthBloc authBloc) {
|
||||
),
|
||||
GoRoute(
|
||||
path: '/todo/:id',
|
||||
builder: (context, state) => const TodoDetailScreen(),
|
||||
builder: (context, state) =>
|
||||
TodoDetailScreen(todoId: state.pathParameters['id']!),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/settings',
|
||||
|
||||
Reference in New Issue
Block a user