refactor: 重构 Agent 模块为 AgentScope,删除旧版 CrewAI/LiteLLM 实现
This commit is contained in:
@@ -671,13 +671,13 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
)
|
||||
: Icon(
|
||||
key: _inputActionIconKey,
|
||||
_isRecording || isWaitingAgent
|
||||
isWaitingAgent
|
||||
? LucideIcons.square
|
||||
: _hasMessage
|
||||
: _isRecording || _hasMessage
|
||||
? LucideIcons.send
|
||||
: LucideIcons.mic,
|
||||
size: _iconSize,
|
||||
color: _isRecording || isWaitingAgent || _hasMessage
|
||||
color: isWaitingAgent || _isRecording || _hasMessage
|
||||
? AppColors.blue600
|
||||
: AppColors.slate500,
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user