feat: 子智能体任务消息查看,实时广播工具调用事件
- 新增 LoadTaskMessages 命令,加载子智能体任务的历史消息 - SubAgentEmitter 通过 MessageBus 实时广播子智能体工具调用 - 前端新增子智能体视图,支持导航进入/退出子智能体会话 - 外部渠道过滤子智能体事件,避免推送到飞书/微信 - ToolCall/ToolResult 新增 subagent_task_id 字段 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
5d3a583915
commit
4cb26b5b67
@ -2402,7 +2402,9 @@ impl Channel for FeishuChannel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fn send(&self, msg: OutboundMessage) -> Result<(), ChannelError> {
|
async fn send(&self, msg: OutboundMessage) -> Result<(), ChannelError> {
|
||||||
if matches!(msg.event_kind, OutboundEventKind::ToolResult | OutboundEventKind::ToolPending) {
|
if matches!(msg.event_kind, OutboundEventKind::ToolResult | OutboundEventKind::ToolPending)
|
||||||
|
|| msg.metadata.get("is_subagent_event").map(|v| v == "true").unwrap_or(false)
|
||||||
|
{
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -287,7 +287,9 @@ impl Channel for WechatChannel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fn send(&self, msg: OutboundMessage) -> Result<(), ChannelError> {
|
async fn send(&self, msg: OutboundMessage) -> Result<(), ChannelError> {
|
||||||
if matches!(msg.event_kind, OutboundEventKind::ToolResult | OutboundEventKind::ToolPending) {
|
if matches!(msg.event_kind, OutboundEventKind::ToolResult | OutboundEventKind::ToolPending)
|
||||||
|
|| msg.metadata.get("is_subagent_event").map(|v| v == "true").unwrap_or(false)
|
||||||
|
{
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
171
src/command/handlers/load_task_messages.rs
Normal file
171
src/command/handlers/load_task_messages.rs
Normal file
@ -0,0 +1,171 @@
|
|||||||
|
use crate::command::context::CommandContext;
|
||||||
|
use crate::command::handler::{CommandHandler, CommandMetadata};
|
||||||
|
use crate::command::response::{CommandError, CommandResponse};
|
||||||
|
use crate::command::Command;
|
||||||
|
use crate::storage::SessionStore;
|
||||||
|
use crate::tools::task::repository::TaskRepository;
|
||||||
|
use crate::tools::task::types::{TaskSession, TaskSessionState};
|
||||||
|
use async_trait::async_trait;
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
pub struct LoadTaskMessagesCommandHandler {
|
||||||
|
task_repository: Arc<dyn TaskRepository>,
|
||||||
|
store: Arc<SessionStore>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl LoadTaskMessagesCommandHandler {
|
||||||
|
pub fn new(
|
||||||
|
task_repository: Arc<dyn TaskRepository>,
|
||||||
|
store: Arc<SessionStore>,
|
||||||
|
) -> Self {
|
||||||
|
Self { task_repository, store }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl CommandHandler for LoadTaskMessagesCommandHandler {
|
||||||
|
fn can_handle(&self, cmd: &Command) -> bool {
|
||||||
|
matches!(cmd, Command::LoadTaskMessages { .. })
|
||||||
|
}
|
||||||
|
|
||||||
|
fn metadata(&self) -> Option<CommandMetadata> {
|
||||||
|
Some(CommandMetadata {
|
||||||
|
name: "load_task_messages",
|
||||||
|
description: "加载子智能体任务的消息历史",
|
||||||
|
usage: "/load_task_messages <task_id>",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn handle(
|
||||||
|
&self,
|
||||||
|
cmd: Command,
|
||||||
|
ctx: CommandContext,
|
||||||
|
) -> Result<CommandResponse, CommandError> {
|
||||||
|
match cmd {
|
||||||
|
Command::LoadTaskMessages { task_id } => {
|
||||||
|
handle_load_task_messages(self, task_id, ctx).await
|
||||||
|
}
|
||||||
|
_ => unreachable!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn handle_load_task_messages(
|
||||||
|
handler: &LoadTaskMessagesCommandHandler,
|
||||||
|
task_id: String,
|
||||||
|
ctx: CommandContext,
|
||||||
|
) -> Result<CommandResponse, CommandError> {
|
||||||
|
tracing::info!(
|
||||||
|
task_id = %task_id,
|
||||||
|
request_id = %ctx.request_id,
|
||||||
|
"LoadTaskMessages: looking up task"
|
||||||
|
);
|
||||||
|
|
||||||
|
// 1. Try in-memory repository first
|
||||||
|
let task = match handler
|
||||||
|
.task_repository
|
||||||
|
.load_task_session(&task_id)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(Some(task)) => {
|
||||||
|
tracing::info!(
|
||||||
|
task_id = %task.id,
|
||||||
|
session_id = %task.session_id,
|
||||||
|
state = ?task.state,
|
||||||
|
"LoadTaskMessages: task found in memory"
|
||||||
|
);
|
||||||
|
Some(task)
|
||||||
|
}
|
||||||
|
Ok(None) => {
|
||||||
|
tracing::info!(
|
||||||
|
task_id = %task_id,
|
||||||
|
"LoadTaskMessages: task not in memory, searching database"
|
||||||
|
);
|
||||||
|
// 2. Fall back to database (survives restarts)
|
||||||
|
reconstruct_task_from_db(&handler.store, &task_id)?
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
tracing::error!(
|
||||||
|
task_id = %task_id,
|
||||||
|
error = %e,
|
||||||
|
"LoadTaskMessages: repository error during lookup"
|
||||||
|
);
|
||||||
|
return Err(CommandError::new("LOAD_TASK_ERROR", e.to_string()));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let task = task.ok_or_else(|| {
|
||||||
|
tracing::warn!(
|
||||||
|
task_id = %task_id,
|
||||||
|
"LoadTaskMessages: task not found in repository or database"
|
||||||
|
);
|
||||||
|
CommandError::new("TASK_NOT_FOUND", format!("Task not found: {}", task_id))
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let status = format!("{:?}", task.state).to_lowercase();
|
||||||
|
|
||||||
|
let mut response = CommandResponse::success(ctx.request_id)
|
||||||
|
.with_metadata("task_session_id", &task.session_id)
|
||||||
|
.with_metadata("task_id", &task.id)
|
||||||
|
.with_metadata("task_description", &task.description)
|
||||||
|
.with_metadata("task_subagent_type", &task.subagent_type)
|
||||||
|
.with_metadata("task_status", &status);
|
||||||
|
|
||||||
|
if let Some(ref summary) = task.summary {
|
||||||
|
response = response.with_metadata("task_summary", summary);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(response)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Reconstruct a TaskSession from the database when it's not in the in-memory repository.
|
||||||
|
/// Task sessions have id format: sub:{parent_session_id}:task:{uuid}
|
||||||
|
fn reconstruct_task_from_db(
|
||||||
|
store: &SessionStore,
|
||||||
|
task_id: &str,
|
||||||
|
) -> Result<Option<TaskSession>, CommandError> {
|
||||||
|
let sessions = store
|
||||||
|
.find_sessions_by_id_suffix(&format!(":{}", task_id))
|
||||||
|
.map_err(|e| CommandError::new("DB_ERROR", e.to_string()))?;
|
||||||
|
|
||||||
|
if sessions.is_empty() {
|
||||||
|
return Ok(None);
|
||||||
|
}
|
||||||
|
|
||||||
|
let record = &sessions[0];
|
||||||
|
let session_id = record.id.clone();
|
||||||
|
|
||||||
|
// Extract parent_session_id from session_id: "sub:{parent}:task:{uuid}"
|
||||||
|
let parent_session_id = session_id
|
||||||
|
.strip_prefix("sub:")
|
||||||
|
.and_then(|rest| {
|
||||||
|
let pos = rest.find(":task:");
|
||||||
|
pos.map(|p| rest[..p].to_string())
|
||||||
|
})
|
||||||
|
.unwrap_or_default();
|
||||||
|
|
||||||
|
// Extract description from title: "Subagent: {description}"
|
||||||
|
let description = record
|
||||||
|
.title
|
||||||
|
.strip_prefix("Subagent: ")
|
||||||
|
.unwrap_or(&record.title)
|
||||||
|
.to_string();
|
||||||
|
|
||||||
|
let now = record.updated_at;
|
||||||
|
|
||||||
|
Ok(Some(TaskSession {
|
||||||
|
id: task_id.to_string(),
|
||||||
|
session_id,
|
||||||
|
parent_session_id,
|
||||||
|
parent_topic_id: None,
|
||||||
|
parent_chat_id: record.chat_id.clone(),
|
||||||
|
parent_channel_name: record.channel_name.clone(),
|
||||||
|
description,
|
||||||
|
subagent_type: "general".to_string(),
|
||||||
|
state: TaskSessionState::Completed,
|
||||||
|
created_at: record.created_at,
|
||||||
|
updated_at: now,
|
||||||
|
summary: None,
|
||||||
|
error: None,
|
||||||
|
}))
|
||||||
|
}
|
||||||
@ -4,6 +4,7 @@ pub mod list_channels;
|
|||||||
pub mod list_sessions;
|
pub mod list_sessions;
|
||||||
pub mod list_sessions_by_channel;
|
pub mod list_sessions_by_channel;
|
||||||
pub mod list_topics;
|
pub mod list_topics;
|
||||||
|
pub mod load_task_messages;
|
||||||
pub mod load_topic;
|
pub mod load_topic;
|
||||||
pub mod save_session;
|
pub mod save_session;
|
||||||
pub mod save_topic;
|
pub mod save_topic;
|
||||||
|
|||||||
@ -43,6 +43,8 @@ pub enum Command {
|
|||||||
},
|
},
|
||||||
/// 列出 Session 的所有 Topics
|
/// 列出 Session 的所有 Topics
|
||||||
ListTopics { session_id: String },
|
ListTopics { session_id: String },
|
||||||
|
/// 加载子智能体任务的消息历史
|
||||||
|
LoadTaskMessages { task_id: String },
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Command {
|
impl Command {
|
||||||
@ -60,6 +62,7 @@ impl Command {
|
|||||||
Command::ListChannels => "list_channels",
|
Command::ListChannels => "list_channels",
|
||||||
Command::ListSessionsByChannel { .. } => "list_sessions_by_channel",
|
Command::ListSessionsByChannel { .. } => "list_sessions_by_channel",
|
||||||
Command::ListTopics { .. } => "list_topics",
|
Command::ListTopics { .. } => "list_topics",
|
||||||
|
Command::LoadTaskMessages { .. } => "load_task_messages",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -91,6 +91,7 @@ impl GatewayState {
|
|||||||
config.memory_maintenance.clone(),
|
config.memory_maintenance.clone(),
|
||||||
session_ttl_hours,
|
session_ttl_hours,
|
||||||
mcp_config,
|
mcp_config,
|
||||||
|
Some(bus.clone()),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
|
|||||||
@ -4,6 +4,7 @@ use std::collections::{HashMap, HashSet};
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use crate::agent::AgentError;
|
use crate::agent::AgentError;
|
||||||
|
use crate::bus::MessageBus;
|
||||||
use crate::config::{LLMProviderConfig, MemoryMaintenanceConfig, SubagentsConfig, TaskConfig};
|
use crate::config::{LLMProviderConfig, MemoryMaintenanceConfig, SubagentsConfig, TaskConfig};
|
||||||
use crate::gateway::tool_registry_factory::ToolRegistryFactory;
|
use crate::gateway::tool_registry_factory::ToolRegistryFactory;
|
||||||
use crate::mcp::McpInitializer;
|
use crate::mcp::McpInitializer;
|
||||||
@ -44,6 +45,7 @@ pub(crate) fn build_session_manager(
|
|||||||
maintenance_config: MemoryMaintenanceConfig,
|
maintenance_config: MemoryMaintenanceConfig,
|
||||||
session_ttl_hours: Option<u64>,
|
session_ttl_hours: Option<u64>,
|
||||||
mcp_config: crate::mcp::McpConfig,
|
mcp_config: crate::mcp::McpConfig,
|
||||||
|
bus: Option<Arc<MessageBus>>,
|
||||||
) -> Result<(SessionManager, Arc<dyn TaskRepository>), AgentError> {
|
) -> Result<(SessionManager, Arc<dyn TaskRepository>), AgentError> {
|
||||||
build_session_manager_with_sender(
|
build_session_manager_with_sender(
|
||||||
agent_prompt_reinject_every,
|
agent_prompt_reinject_every,
|
||||||
@ -59,6 +61,7 @@ pub(crate) fn build_session_manager(
|
|||||||
maintenance_config,
|
maintenance_config,
|
||||||
session_ttl_hours,
|
session_ttl_hours,
|
||||||
mcp_config,
|
mcp_config,
|
||||||
|
bus,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,6 +80,7 @@ pub(crate) fn build_session_manager_with_sender(
|
|||||||
maintenance_config: MemoryMaintenanceConfig,
|
maintenance_config: MemoryMaintenanceConfig,
|
||||||
session_ttl_hours: Option<u64>,
|
session_ttl_hours: Option<u64>,
|
||||||
mcp_config: crate::mcp::McpConfig,
|
mcp_config: crate::mcp::McpConfig,
|
||||||
|
bus: Option<Arc<MessageBus>>,
|
||||||
) -> Result<(SessionManager, Arc<dyn TaskRepository>), AgentError> {
|
) -> Result<(SessionManager, Arc<dyn TaskRepository>), AgentError> {
|
||||||
let store = Arc::new(
|
let store = Arc::new(
|
||||||
SessionStore::new()
|
SessionStore::new()
|
||||||
@ -188,6 +192,7 @@ pub(crate) fn build_session_manager_with_sender(
|
|||||||
subagent_tools,
|
subagent_tools,
|
||||||
provider_config.clone(),
|
provider_config.clone(),
|
||||||
catalog,
|
catalog,
|
||||||
|
bus.clone(),
|
||||||
));
|
));
|
||||||
|
|
||||||
(factory.with_subagent_runtime(subagent_runtime), task_repository)
|
(factory.with_subagent_runtime(subagent_runtime), task_repository)
|
||||||
|
|||||||
@ -505,6 +505,7 @@ impl SessionManager {
|
|||||||
maintenance_config,
|
maintenance_config,
|
||||||
session_ttl_hours,
|
session_ttl_hours,
|
||||||
mcp_config,
|
mcp_config,
|
||||||
|
None,
|
||||||
)
|
)
|
||||||
.map(|(session_manager, _)| session_manager)
|
.map(|(session_manager, _)| session_manager)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,6 +11,7 @@ use crate::command::handlers::list_channels::ListChannelsCommandHandler;
|
|||||||
use crate::command::handlers::list_sessions::ListSessionsCommandHandler;
|
use crate::command::handlers::list_sessions::ListSessionsCommandHandler;
|
||||||
use crate::command::handlers::list_sessions_by_channel::ListSessionsByChannelCommandHandler;
|
use crate::command::handlers::list_sessions_by_channel::ListSessionsByChannelCommandHandler;
|
||||||
use crate::command::handlers::list_topics::ListTopicsCommandHandler;
|
use crate::command::handlers::list_topics::ListTopicsCommandHandler;
|
||||||
|
use crate::command::handlers::load_task_messages::LoadTaskMessagesCommandHandler;
|
||||||
use crate::command::handlers::load_topic::LoadTopicCommandHandler;
|
use crate::command::handlers::load_topic::LoadTopicCommandHandler;
|
||||||
use crate::command::handlers::save_session::SaveSessionCommandHandler;
|
use crate::command::handlers::save_session::SaveSessionCommandHandler;
|
||||||
use crate::command::handlers::session::SessionCommandHandler;
|
use crate::command::handlers::session::SessionCommandHandler;
|
||||||
@ -299,6 +300,11 @@ async fn handle_inbound(
|
|||||||
router.register(Box::new(GetCurrentSessionCommandHandler::new(store.clone())));
|
router.register(Box::new(GetCurrentSessionCommandHandler::new(store.clone())));
|
||||||
// 注册 load_topic 处理器
|
// 注册 load_topic 处理器
|
||||||
router.register(Box::new(LoadTopicCommandHandler::new(store.clone())));
|
router.register(Box::new(LoadTopicCommandHandler::new(store.clone())));
|
||||||
|
// 注册 load_task_messages 处理器
|
||||||
|
router.register(Box::new(LoadTaskMessagesCommandHandler::new(
|
||||||
|
state.task_repository.clone(),
|
||||||
|
store.clone(),
|
||||||
|
)));
|
||||||
router.register(Box::new(SaveSessionCommandHandler::new(
|
router.register(Box::new(SaveSessionCommandHandler::new(
|
||||||
store.clone(),
|
store.clone(),
|
||||||
state.task_repository.clone(),
|
state.task_repository.clone(),
|
||||||
@ -359,6 +365,28 @@ async fn handle_inbound(
|
|||||||
tracing::warn!(error = %e, topic_id = %topic_id, "Failed to send topic history");
|
tracing::warn!(error = %e, topic_id = %topic_id, "Failed to send topic history");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 加载子智能体任务消息
|
||||||
|
if let Some(task_session_id) = response.metadata.get("task_session_id") {
|
||||||
|
if let Err(e) = send_task_messages(&store, task_session_id, sender).await {
|
||||||
|
tracing::warn!(error = %e, task_session_id = %task_session_id, "Failed to send task messages");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 发送 TaskMessagesLoaded 元数据
|
||||||
|
let task_id = response.metadata.get("task_id").cloned().unwrap_or_default();
|
||||||
|
let description = response.metadata.get("task_description").cloned().unwrap_or_default();
|
||||||
|
let subagent_type = response.metadata.get("task_subagent_type").cloned().unwrap_or_default();
|
||||||
|
let status = response.metadata.get("task_status").cloned().unwrap_or_default();
|
||||||
|
let summary = response.metadata.get("task_summary").cloned();
|
||||||
|
|
||||||
|
let _ = sender.send(WsOutbound::TaskMessagesLoaded {
|
||||||
|
task_id,
|
||||||
|
description,
|
||||||
|
subagent_type,
|
||||||
|
status,
|
||||||
|
summary,
|
||||||
|
}).await;
|
||||||
|
}
|
||||||
|
|
||||||
if current_topic_id.is_none() {
|
if current_topic_id.is_none() {
|
||||||
if let Some(topics_json) = response.metadata.get("topics") {
|
if let Some(topics_json) = response.metadata.get("topics") {
|
||||||
match serde_json::from_str::<Vec<crate::protocol::TopicSummary>>(topics_json) {
|
match serde_json::from_str::<Vec<crate::protocol::TopicSummary>>(topics_json) {
|
||||||
@ -438,6 +466,26 @@ async fn send_topic_history(
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 加载并发送子智能体任务的历史消息
|
||||||
|
async fn send_task_messages(
|
||||||
|
store: &Arc<crate::storage::SessionStore>,
|
||||||
|
session_id: &str,
|
||||||
|
sender: &mpsc::Sender<WsOutbound>,
|
||||||
|
) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
let messages = store.load_messages(session_id)?;
|
||||||
|
|
||||||
|
tracing::info!(session_id = %session_id, message_count = messages.len(), "Sending task messages");
|
||||||
|
|
||||||
|
for msg in messages {
|
||||||
|
let outbound = chat_message_to_ws_outbound(&msg);
|
||||||
|
if let Some(outbound) = outbound {
|
||||||
|
let _ = sender.send(outbound).await;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
/// 将 ChatMessage 转换为 WsOutbound
|
/// 将 ChatMessage 转换为 WsOutbound
|
||||||
fn chat_message_to_ws_outbound(msg: &crate::bus::ChatMessage) -> Option<WsOutbound> {
|
fn chat_message_to_ws_outbound(msg: &crate::bus::ChatMessage) -> Option<WsOutbound> {
|
||||||
use crate::bus::message::ToolMessageState;
|
use crate::bus::message::ToolMessageState;
|
||||||
@ -454,6 +502,7 @@ fn chat_message_to_ws_outbound(msg: &crate::bus::ChatMessage) -> Option<WsOutbou
|
|||||||
arguments: tool_call.arguments.clone(),
|
arguments: tool_call.arguments.clone(),
|
||||||
content: format!("{}\nargs: {}", tool_call.name, tool_call.arguments),
|
content: format!("{}\nargs: {}", tool_call.name, tool_call.arguments),
|
||||||
role: msg.role.clone(),
|
role: msg.role.clone(),
|
||||||
|
subagent_task_id: None,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -474,6 +523,7 @@ fn chat_message_to_ws_outbound(msg: &crate::bus::ChatMessage) -> Option<WsOutbou
|
|||||||
tool_name: msg.tool_name.clone().unwrap_or_default(),
|
tool_name: msg.tool_name.clone().unwrap_or_default(),
|
||||||
content: msg.content.clone(),
|
content: msg.content.clone(),
|
||||||
role: msg.role.clone(),
|
role: msg.role.clone(),
|
||||||
|
subagent_task_id: None,
|
||||||
}),
|
}),
|
||||||
ToolMessageState::PendingUserAction => Some(WsOutbound::ToolPending {
|
ToolMessageState::PendingUserAction => Some(WsOutbound::ToolPending {
|
||||||
id: msg.id.clone(),
|
id: msg.id.clone(),
|
||||||
|
|||||||
@ -88,6 +88,8 @@ pub enum WsOutbound {
|
|||||||
arguments: serde_json::Value,
|
arguments: serde_json::Value,
|
||||||
content: String,
|
content: String,
|
||||||
role: String,
|
role: String,
|
||||||
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
||||||
|
subagent_task_id: Option<String>,
|
||||||
},
|
},
|
||||||
#[serde(rename = "tool_result")]
|
#[serde(rename = "tool_result")]
|
||||||
ToolResult {
|
ToolResult {
|
||||||
@ -96,6 +98,8 @@ pub enum WsOutbound {
|
|||||||
tool_name: String,
|
tool_name: String,
|
||||||
content: String,
|
content: String,
|
||||||
role: String,
|
role: String,
|
||||||
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
||||||
|
subagent_task_id: Option<String>,
|
||||||
},
|
},
|
||||||
#[serde(rename = "tool_pending")]
|
#[serde(rename = "tool_pending")]
|
||||||
ToolPending {
|
ToolPending {
|
||||||
@ -137,6 +141,15 @@ pub enum WsOutbound {
|
|||||||
},
|
},
|
||||||
#[serde(rename = "session_saved")]
|
#[serde(rename = "session_saved")]
|
||||||
SessionSaved { session_id: String, filepath: String },
|
SessionSaved { session_id: String, filepath: String },
|
||||||
|
#[serde(rename = "task_messages_loaded")]
|
||||||
|
TaskMessagesLoaded {
|
||||||
|
task_id: String,
|
||||||
|
description: String,
|
||||||
|
subagent_type: String,
|
||||||
|
status: String,
|
||||||
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
||||||
|
summary: Option<String>,
|
||||||
|
},
|
||||||
#[serde(rename = "pong")]
|
#[serde(rename = "pong")]
|
||||||
Pong,
|
Pong,
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,6 +31,7 @@ pub(crate) fn ws_outbound_from_chat_message(message: &ChatMessage) -> Vec<WsOutb
|
|||||||
arguments: tool_call.arguments.clone(),
|
arguments: tool_call.arguments.clone(),
|
||||||
content: format_tool_call_content(&tool_call.name, &tool_call.arguments),
|
content: format_tool_call_content(&tool_call.name, &tool_call.arguments),
|
||||||
role: message.role.clone(),
|
role: message.role.clone(),
|
||||||
|
subagent_task_id: None,
|
||||||
}));
|
}));
|
||||||
outbound
|
outbound
|
||||||
} else {
|
} else {
|
||||||
@ -53,6 +54,7 @@ pub(crate) fn ws_outbound_from_chat_message(message: &ChatMessage) -> Vec<WsOutb
|
|||||||
tool_name: message.tool_name.clone().unwrap_or_default(),
|
tool_name: message.tool_name.clone().unwrap_or_default(),
|
||||||
content: message.content.clone(),
|
content: message.content.clone(),
|
||||||
role: message.role.clone(),
|
role: message.role.clone(),
|
||||||
|
subagent_task_id: None,
|
||||||
}],
|
}],
|
||||||
ToolMessageState::PendingUserAction => vec![WsOutbound::ToolPending {
|
ToolMessageState::PendingUserAction => vec![WsOutbound::ToolPending {
|
||||||
id: message.id.clone(),
|
id: message.id.clone(),
|
||||||
@ -101,6 +103,7 @@ pub(crate) fn ws_outbound_from_outbound_message(message: &OutboundMessage) -> Ve
|
|||||||
.unwrap_or(serde_json::Value::Null),
|
.unwrap_or(serde_json::Value::Null),
|
||||||
content: message.content.clone(),
|
content: message.content.clone(),
|
||||||
role: message.role.clone(),
|
role: message.role.clone(),
|
||||||
|
subagent_task_id: message.metadata.get("subagent_task_id").cloned(),
|
||||||
}],
|
}],
|
||||||
OutboundEventKind::ToolResult => vec![WsOutbound::ToolResult {
|
OutboundEventKind::ToolResult => vec![WsOutbound::ToolResult {
|
||||||
id: message
|
id: message
|
||||||
@ -111,6 +114,7 @@ pub(crate) fn ws_outbound_from_outbound_message(message: &OutboundMessage) -> Ve
|
|||||||
tool_name: message.tool_name.clone().unwrap_or_default(),
|
tool_name: message.tool_name.clone().unwrap_or_default(),
|
||||||
content: message.content.clone(),
|
content: message.content.clone(),
|
||||||
role: message.role.clone(),
|
role: message.role.clone(),
|
||||||
|
subagent_task_id: message.metadata.get("subagent_task_id").cloned(),
|
||||||
}],
|
}],
|
||||||
OutboundEventKind::ToolPending => vec![WsOutbound::ToolPending {
|
OutboundEventKind::ToolPending => vec![WsOutbound::ToolPending {
|
||||||
id: message
|
id: message
|
||||||
|
|||||||
@ -319,6 +319,33 @@ impl SessionStore {
|
|||||||
.map_err(StorageError::from)
|
.map_err(StorageError::from)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Find sessions whose id ends with the given suffix (used for task session lookup)
|
||||||
|
pub fn find_sessions_by_id_suffix(
|
||||||
|
&self,
|
||||||
|
suffix: &str,
|
||||||
|
) -> Result<Vec<SessionRecord>, StorageError> {
|
||||||
|
let conn = self.conn.lock().expect("session db mutex poisoned");
|
||||||
|
let pattern = format!("%{}", suffix);
|
||||||
|
let mut stmt = conn.prepare(
|
||||||
|
"
|
||||||
|
SELECT id, title, channel_name, chat_id, summary,
|
||||||
|
created_at, updated_at, last_active_at,
|
||||||
|
archived_at, deleted_at, message_count,
|
||||||
|
user_turn_count, agent_prompt_reinjection_count
|
||||||
|
FROM sessions
|
||||||
|
WHERE id LIKE ?1 AND deleted_at IS NULL
|
||||||
|
ORDER BY last_active_at DESC
|
||||||
|
",
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let rows = stmt.query_map(params![pattern], map_session_record)?;
|
||||||
|
let mut sessions = Vec::new();
|
||||||
|
for row in rows {
|
||||||
|
sessions.push(row?);
|
||||||
|
}
|
||||||
|
Ok(sessions)
|
||||||
|
}
|
||||||
|
|
||||||
pub fn list_sessions(
|
pub fn list_sessions(
|
||||||
&self,
|
&self,
|
||||||
channel_name: &str,
|
channel_name: &str,
|
||||||
|
|||||||
@ -57,15 +57,35 @@ impl Default for InMemoryTaskRepository {
|
|||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl TaskRepository for InMemoryTaskRepository {
|
impl TaskRepository for InMemoryTaskRepository {
|
||||||
async fn save_task_session(&self, session: &TaskSession) -> Result<(), StorageError> {
|
async fn save_task_session(&self, session: &TaskSession) -> Result<(), StorageError> {
|
||||||
|
tracing::warn!(
|
||||||
|
task_id = %session.id,
|
||||||
|
session_id = %session.session_id,
|
||||||
|
state = ?session.state,
|
||||||
|
"REPO_SAVE: Saving task session"
|
||||||
|
);
|
||||||
self.sessions
|
self.sessions
|
||||||
.write()
|
.write()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.insert(session.id.clone(), session.clone());
|
.insert(session.id.clone(), session.clone());
|
||||||
|
tracing::warn!(
|
||||||
|
task_id = %session.id,
|
||||||
|
total_tasks = self.sessions.read().unwrap().len(),
|
||||||
|
"REPO_SAVE: Task session saved, current repository size"
|
||||||
|
);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn load_task_session(&self, task_id: &str) -> Result<Option<TaskSession>, StorageError> {
|
async fn load_task_session(&self, task_id: &str) -> Result<Option<TaskSession>, StorageError> {
|
||||||
Ok(self.sessions.read().unwrap().get(task_id).cloned())
|
let sessions = self.sessions.read().unwrap();
|
||||||
|
let total = sessions.len();
|
||||||
|
let keys: Vec<&str> = sessions.keys().map(|k| k.as_str()).collect();
|
||||||
|
tracing::warn!(
|
||||||
|
lookup_task_id = %task_id,
|
||||||
|
total_tasks = total,
|
||||||
|
all_keys = ?keys,
|
||||||
|
"REPO_LOOKUP: Looking up task session"
|
||||||
|
);
|
||||||
|
Ok(sessions.get(task_id).cloned())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn delete_task_session(&self, task_id: &str) -> Result<bool, StorageError> {
|
async fn delete_task_session(&self, task_id: &str) -> Result<bool, StorageError> {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
use std::collections::HashSet;
|
use std::collections::{HashMap, HashSet};
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
@ -7,8 +7,10 @@ use std::time::Duration;
|
|||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
|
|
||||||
use crate::agent::{AgentLoop, AgentRuntimeConfig, SystemPrompt, SystemPromptContext, SystemPromptProvider};
|
use crate::agent::{AgentLoop, AgentRuntimeConfig, EmittedMessageHandler, SystemPrompt, SystemPromptContext, SystemPromptProvider};
|
||||||
use crate::bus::ChatMessage;
|
use crate::bus::ChatMessage;
|
||||||
|
use crate::bus::message::OutboundMessage;
|
||||||
|
use crate::bus::MessageBus;
|
||||||
use crate::config::{LLMProviderConfig, SubagentsConfig};
|
use crate::config::{LLMProviderConfig, SubagentsConfig};
|
||||||
use crate::storage::ConversationRepository;
|
use crate::storage::ConversationRepository;
|
||||||
use crate::tools::{ToolContext, ToolRegistry};
|
use crate::tools::{ToolContext, ToolRegistry};
|
||||||
@ -97,6 +99,37 @@ impl StaticSystemPromptProvider {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 子智能体工具调用实时广播器(不依赖 gateway 层)
|
||||||
|
struct SubAgentEmitter {
|
||||||
|
bus: Arc<MessageBus>,
|
||||||
|
channel_name: String,
|
||||||
|
chat_id: String,
|
||||||
|
metadata: HashMap<String, String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl EmittedMessageHandler for SubAgentEmitter {
|
||||||
|
async fn handle(&self, message: ChatMessage) {
|
||||||
|
for outbound in OutboundMessage::from_chat_message(
|
||||||
|
&self.channel_name,
|
||||||
|
&self.chat_id,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
&self.metadata,
|
||||||
|
&message,
|
||||||
|
) {
|
||||||
|
if let Err(error) = self.bus.publish_outbound(outbound).await {
|
||||||
|
tracing::error!(
|
||||||
|
error = %error,
|
||||||
|
channel = %self.channel_name,
|
||||||
|
chat_id = %self.chat_id,
|
||||||
|
"Failed to publish live sub-agent tool call"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl SystemPromptProvider for StaticSystemPromptProvider {
|
impl SystemPromptProvider for StaticSystemPromptProvider {
|
||||||
fn build(&self, _context: &SystemPromptContext) -> Option<SystemPrompt> {
|
fn build(&self, _context: &SystemPromptContext) -> Option<SystemPrompt> {
|
||||||
Some(SystemPrompt {
|
Some(SystemPrompt {
|
||||||
@ -115,6 +148,7 @@ pub struct DefaultSubAgentRuntime {
|
|||||||
provider_config: LLMProviderConfig,
|
provider_config: LLMProviderConfig,
|
||||||
/// 子代理定义目录(内置 + 自定义)
|
/// 子代理定义目录(内置 + 自定义)
|
||||||
catalog: Arc<SubagentCatalog>,
|
catalog: Arc<SubagentCatalog>,
|
||||||
|
bus: Option<Arc<MessageBus>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DefaultSubAgentRuntime {
|
impl DefaultSubAgentRuntime {
|
||||||
@ -125,6 +159,7 @@ impl DefaultSubAgentRuntime {
|
|||||||
subagent_tools: Arc<ToolRegistry>,
|
subagent_tools: Arc<ToolRegistry>,
|
||||||
provider_config: LLMProviderConfig,
|
provider_config: LLMProviderConfig,
|
||||||
catalog: Arc<SubagentCatalog>,
|
catalog: Arc<SubagentCatalog>,
|
||||||
|
bus: Option<Arc<MessageBus>>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
config,
|
config,
|
||||||
@ -133,6 +168,7 @@ impl DefaultSubAgentRuntime {
|
|||||||
subagent_tools,
|
subagent_tools,
|
||||||
provider_config,
|
provider_config,
|
||||||
catalog,
|
catalog,
|
||||||
|
bus,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -174,16 +210,34 @@ impl DefaultSubAgentRuntime {
|
|||||||
None, // 子代理不需要 skill provider
|
None, // 子代理不需要 skill provider
|
||||||
)
|
)
|
||||||
.map(|agent| {
|
.map(|agent| {
|
||||||
agent.with_tool_context(ToolContext {
|
let agent = agent.with_tool_context(ToolContext {
|
||||||
channel_name: Some(session.parent_channel_name.clone()),
|
channel_name: Some(session.parent_channel_name.clone()),
|
||||||
sender_id: None,
|
sender_id: None,
|
||||||
chat_id: Some(session.parent_chat_id.clone()), // 使用父会话 chat_id
|
chat_id: Some(session.parent_chat_id.clone()),
|
||||||
session_id: Some(session.session_id.clone()), // 子代理自己的 session_id
|
session_id: Some(session.session_id.clone()),
|
||||||
topic_id: session.parent_topic_id.clone(), // 继承父话题 ID
|
topic_id: session.parent_topic_id.clone(),
|
||||||
message_id: None,
|
message_id: None,
|
||||||
message_seq: None,
|
message_seq: None,
|
||||||
subagent_description: Some(session.description.clone()),
|
subagent_description: Some(session.description.clone()),
|
||||||
})
|
});
|
||||||
|
|
||||||
|
// 如果有 MessageBus,附加实时广播 emitter
|
||||||
|
if let Some(bus) = &self.bus {
|
||||||
|
let mut metadata = HashMap::new();
|
||||||
|
metadata.insert("subagent_task_id".to_string(), session.id.clone());
|
||||||
|
metadata.insert("is_subagent_event".to_string(), "true".to_string());
|
||||||
|
|
||||||
|
let emitter = Arc::new(SubAgentEmitter {
|
||||||
|
bus: bus.clone(),
|
||||||
|
channel_name: session.parent_channel_name.clone(),
|
||||||
|
chat_id: session.parent_chat_id.clone(),
|
||||||
|
metadata,
|
||||||
|
});
|
||||||
|
|
||||||
|
return agent.with_emitted_message_handler(emitter);
|
||||||
|
}
|
||||||
|
|
||||||
|
agent
|
||||||
})
|
})
|
||||||
.map_err(|e| TaskError::AgentCreationFailed(e.to_string()))
|
.map_err(|e| TaskError::AgentCreationFailed(e.to_string()))
|
||||||
}
|
}
|
||||||
@ -340,6 +394,13 @@ impl SubAgentRuntime for DefaultSubAgentRuntime {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 5. 保存任务会话
|
// 5. 保存任务会话
|
||||||
|
tracing::info!(
|
||||||
|
task_id = %session.id,
|
||||||
|
session_id = %session.session_id,
|
||||||
|
description = %session.description,
|
||||||
|
subagent_type = %session.subagent_type,
|
||||||
|
"Spawning sub-agent task"
|
||||||
|
);
|
||||||
self.task_repository.save_task_session(&session).await?;
|
self.task_repository.save_task_session(&session).await?;
|
||||||
|
|
||||||
// 6. 构建子代理系统提示词
|
// 6. 构建子代理系统提示词
|
||||||
@ -364,12 +425,24 @@ impl SubAgentRuntime for DefaultSubAgentRuntime {
|
|||||||
Ok(tool_result) => {
|
Ok(tool_result) => {
|
||||||
let mut session = session;
|
let mut session = session;
|
||||||
session.mark_completed(tool_result.summary.clone());
|
session.mark_completed(tool_result.summary.clone());
|
||||||
|
tracing::info!(
|
||||||
|
task_id = %session.id,
|
||||||
|
session_id = %session.session_id,
|
||||||
|
"Task completed, updating session"
|
||||||
|
);
|
||||||
self.task_repository.save_task_session(&session).await?;
|
self.task_repository.save_task_session(&session).await?;
|
||||||
Ok(tool_result)
|
Ok(tool_result)
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
let mut session = session;
|
let mut session = session;
|
||||||
let status = e.as_status();
|
let status = e.as_status();
|
||||||
|
tracing::warn!(
|
||||||
|
task_id = %session.id,
|
||||||
|
session_id = %session.session_id,
|
||||||
|
status = %status,
|
||||||
|
error = %e,
|
||||||
|
"Task failed, updating session"
|
||||||
|
);
|
||||||
if status == "timeout" {
|
if status == "timeout" {
|
||||||
session.mark_timeout();
|
session.mark_timeout();
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { useCallback, useEffect, useMemo, useRef } from 'react'
|
import { useCallback, useEffect, useMemo, useRef } from 'react'
|
||||||
import { Zap, Cpu, MessageSquare } from 'lucide-react'
|
import { Zap, Cpu, MessageSquare, ArrowLeft, Bot } from 'lucide-react'
|
||||||
import { ChatContainer } from './components/Chat/ChatContainer'
|
import { ChatContainer } from './components/Chat/ChatContainer'
|
||||||
import { TopicList } from './components/Sidebar/TopicList'
|
import { TopicList } from './components/Sidebar/TopicList'
|
||||||
import { SessionInfo } from './components/Sidebar/SessionInfo'
|
import { SessionInfo } from './components/Sidebar/SessionInfo'
|
||||||
@ -29,6 +29,8 @@ function App() {
|
|||||||
messages,
|
messages,
|
||||||
isLoading,
|
isLoading,
|
||||||
isReadOnly,
|
isReadOnly,
|
||||||
|
// 子智能体视图
|
||||||
|
subAgentView,
|
||||||
// 方法
|
// 方法
|
||||||
handleMessage,
|
handleMessage,
|
||||||
handleCommand,
|
handleCommand,
|
||||||
@ -38,6 +40,8 @@ function App() {
|
|||||||
switchTopic,
|
switchTopic,
|
||||||
requestSessionList,
|
requestSessionList,
|
||||||
requestTopicList,
|
requestTopicList,
|
||||||
|
enterSubAgentView,
|
||||||
|
exitSubAgentView,
|
||||||
} = useChat()
|
} = useChat()
|
||||||
|
|
||||||
const { status, sendMessage } = useWebSocket({
|
const { status, sendMessage } = useWebSocket({
|
||||||
@ -156,6 +160,25 @@ function App() {
|
|||||||
[sendMessage, handleCommand, switchTopic, selectTopic]
|
[sendMessage, handleCommand, switchTopic, selectTopic]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const handleNavigateToSubAgent = useCallback(
|
||||||
|
(taskId: string, description: string) => {
|
||||||
|
const cmd = enterSubAgentView(taskId, description)
|
||||||
|
handleCommand(cmd)
|
||||||
|
sendMessage({ type: 'command', payload: JSON.stringify(cmd) })
|
||||||
|
},
|
||||||
|
[enterSubAgentView, handleCommand, sendMessage]
|
||||||
|
)
|
||||||
|
|
||||||
|
const handleExitSubAgentView = useCallback(() => {
|
||||||
|
exitSubAgentView()
|
||||||
|
// Reload current topic messages
|
||||||
|
if (selectedTopic) {
|
||||||
|
const cmd: Command = { type: 'load_topic', topic_id: selectedTopic }
|
||||||
|
handleCommand(cmd)
|
||||||
|
sendMessage({ type: 'command', payload: JSON.stringify(cmd) })
|
||||||
|
}
|
||||||
|
}, [exitSubAgentView, selectedTopic, handleCommand, sendMessage])
|
||||||
|
|
||||||
const chatMessages = useMemo(() => {
|
const chatMessages = useMemo(() => {
|
||||||
const result: ChatMessage[] = []
|
const result: ChatMessage[] = []
|
||||||
const toolCallIndex = new Map<string, number>()
|
const toolCallIndex = new Map<string, number>()
|
||||||
@ -230,18 +253,13 @@ function App() {
|
|||||||
|
|
||||||
{/* Main Content */}
|
{/* Main Content */}
|
||||||
<div className="flex flex-1 overflow-hidden">
|
<div className="flex flex-1 overflow-hidden">
|
||||||
{/* Left Sidebar - 简化为 Session 信息 + Topic 列表 */}
|
{/* Left Sidebar */}
|
||||||
<div className="w-72 shrink-0 border-r border-white/8 bg-[#12121a]/50 flex flex-col">
|
<div className={`w-72 shrink-0 border-r border-white/8 bg-[#12121a]/50 flex flex-col ${subAgentView ? 'opacity-50 pointer-events-none' : ''}`}>
|
||||||
{/* Session Info */}
|
|
||||||
<SessionInfo
|
<SessionInfo
|
||||||
session={session}
|
session={session}
|
||||||
connectionId={connectionId}
|
connectionId={connectionId}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* Divider */}
|
|
||||||
<div className="border-b border-white/8" />
|
<div className="border-b border-white/8" />
|
||||||
|
|
||||||
{/* Topic List */}
|
|
||||||
<div className="flex-1 overflow-hidden">
|
<div className="flex-1 overflow-hidden">
|
||||||
<TopicList
|
<TopicList
|
||||||
sessionId={sessionId}
|
sessionId={sessionId}
|
||||||
@ -256,15 +274,59 @@ function App() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Center - Chat */}
|
{/* Center - Chat */}
|
||||||
<div className="flex-1 min-w-0 bg-[#0a0a0f]">
|
<div className="flex-1 min-w-0 bg-[#0a0a0f] flex flex-col">
|
||||||
|
{/* Sub-agent back bar */}
|
||||||
|
{subAgentView && (
|
||||||
|
<div className="shrink-0 border-b border-white/8 bg-[#12121a]/80 px-4 py-2 flex items-center gap-4">
|
||||||
|
<button
|
||||||
|
onClick={handleExitSubAgentView}
|
||||||
|
className="flex items-center gap-1.5 text-sm text-[#00f0ff] hover:text-[#00f0ff]/80 transition-colors"
|
||||||
|
>
|
||||||
|
<ArrowLeft className="h-4 w-4" />
|
||||||
|
<span>返回主会话</span>
|
||||||
|
</button>
|
||||||
|
<div className="h-4 w-px bg-white/20" />
|
||||||
|
<div className="flex items-center gap-1.5 text-sm text-zinc-300">
|
||||||
|
<Bot className="h-4 w-4 text-violet-400" />
|
||||||
|
<span className="text-zinc-500">子智能体:</span>
|
||||||
|
<span className="text-white font-medium">{subAgentView.description}</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-4 w-px bg-white/20" />
|
||||||
|
<div className="flex items-center gap-1.5 text-sm">
|
||||||
|
<span className="text-zinc-500">类型:</span>
|
||||||
|
<span className="text-zinc-300">{subAgentView.subagentType || '...'}</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-4 w-px bg-white/20" />
|
||||||
|
<div className="flex items-center gap-1.5 text-sm">
|
||||||
|
<span className="text-zinc-500">状态:</span>
|
||||||
|
<span className={`font-medium ${
|
||||||
|
subAgentView.status === 'completed' ? 'text-emerald-400' :
|
||||||
|
subAgentView.status === 'failed' ? 'text-red-400' :
|
||||||
|
subAgentView.status === 'timeout' ? 'text-amber-400' :
|
||||||
|
subAgentView.status === 'running' ? 'text-amber-400' :
|
||||||
|
'text-zinc-400'
|
||||||
|
}`}>
|
||||||
|
{subAgentView.status === 'completed' ? '已完成' :
|
||||||
|
subAgentView.status === 'failed' ? '失败' :
|
||||||
|
subAgentView.status === 'timeout' ? '超时' :
|
||||||
|
subAgentView.status === 'running' ? '执行中' :
|
||||||
|
subAgentView.status === 'loading' ? '加载中...' :
|
||||||
|
subAgentView.status}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex-1 min-h-0">
|
||||||
<ChatContainer
|
<ChatContainer
|
||||||
messages={chatMessages}
|
messages={chatMessages}
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
isReadOnly={isReadOnly}
|
isReadOnly={subAgentView ? true : isReadOnly}
|
||||||
channelName={session?.title ?? 'PicoBot'}
|
channelName={subAgentView ? `子智能体: ${subAgentView.description}` : (session?.title ?? 'PicoBot')}
|
||||||
onSendMessage={handleSendMessage}
|
onSendMessage={subAgentView ? () => {} : handleSendMessage}
|
||||||
|
onNavigateToSubAgent={handleNavigateToSubAgent}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Right Sidebar - Tool Panel */}
|
{/* Right Sidebar - Tool Panel */}
|
||||||
<div className="w-80 shrink-0 border-l border-white/8 bg-[#12121a]/50">
|
<div className="w-80 shrink-0 border-l border-white/8 bg-[#12121a]/50">
|
||||||
|
|||||||
@ -8,6 +8,7 @@ interface ChatContainerProps {
|
|||||||
isReadOnly?: boolean
|
isReadOnly?: boolean
|
||||||
channelName?: string
|
channelName?: string
|
||||||
onSendMessage: (content: string) => void
|
onSendMessage: (content: string) => void
|
||||||
|
onNavigateToSubAgent?: (taskId: string, description: string) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ChatContainer({
|
export function ChatContainer({
|
||||||
@ -16,11 +17,12 @@ export function ChatContainer({
|
|||||||
isReadOnly = false,
|
isReadOnly = false,
|
||||||
channelName,
|
channelName,
|
||||||
onSendMessage,
|
onSendMessage,
|
||||||
|
onNavigateToSubAgent,
|
||||||
}: ChatContainerProps) {
|
}: ChatContainerProps) {
|
||||||
return (
|
return (
|
||||||
<div className="flex h-full flex-col">
|
<div className="flex h-full flex-col">
|
||||||
<div className="flex-1 overflow-hidden">
|
<div className="flex-1 overflow-hidden">
|
||||||
<MessageList messages={messages} />
|
<MessageList messages={messages} onNavigateToSubAgent={onNavigateToSubAgent} />
|
||||||
</div>
|
</div>
|
||||||
<MessageInput
|
<MessageInput
|
||||||
onSend={onSendMessage}
|
onSend={onSendMessage}
|
||||||
|
|||||||
@ -2,10 +2,11 @@ import { useState } from 'react'
|
|||||||
import { User, Bot, Wrench, CheckCircle, AlertCircle, Terminal, File, Image, FileText, Music, Video, Download, ChevronDown, ChevronRight, Copy, Check } from 'lucide-react'
|
import { User, Bot, Wrench, CheckCircle, AlertCircle, Terminal, File, Image, FileText, Music, Video, Download, ChevronDown, ChevronRight, Copy, Check } from 'lucide-react'
|
||||||
import ReactMarkdown from 'react-markdown'
|
import ReactMarkdown from 'react-markdown'
|
||||||
import remarkGfm from 'remark-gfm'
|
import remarkGfm from 'remark-gfm'
|
||||||
import type { ChatMessage, Attachment } from '../../types/protocol'
|
import type { ChatMessage, Attachment, TaskToolResult } from '../../types/protocol'
|
||||||
|
|
||||||
interface MessageBubbleProps {
|
interface MessageBubbleProps {
|
||||||
message: ChatMessage
|
message: ChatMessage
|
||||||
|
onNavigateToSubAgent?: (taskId: string, description: string) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
function getAttachmentIcon(mediaType: string) {
|
function getAttachmentIcon(mediaType: string) {
|
||||||
@ -110,7 +111,26 @@ function CopyButton({ text, className = '' }: { text: string; className?: string
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function MessageBubble({ message }: MessageBubbleProps) {
|
function parseTaskResult(content: string): TaskToolResult | null {
|
||||||
|
if (!content) return null
|
||||||
|
try {
|
||||||
|
const parsed = JSON.parse(content)
|
||||||
|
if (
|
||||||
|
parsed &&
|
||||||
|
typeof parsed.status === 'string' &&
|
||||||
|
typeof parsed.output === 'string' &&
|
||||||
|
typeof parsed.summary === 'string' &&
|
||||||
|
typeof parsed.task_id === 'string'
|
||||||
|
) {
|
||||||
|
return parsed as TaskToolResult
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
} catch {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function MessageBubble({ message, onNavigateToSubAgent }: MessageBubbleProps) {
|
||||||
const isUser = message.role === 'user'
|
const isUser = message.role === 'user'
|
||||||
const isTool = message.role === 'tool'
|
const isTool = message.role === 'tool'
|
||||||
const isMergedTool = message.type === 'merged_tool'
|
const isMergedTool = message.type === 'merged_tool'
|
||||||
@ -174,28 +194,66 @@ export function MessageBubble({ message }: MessageBubbleProps) {
|
|||||||
|
|
||||||
const displayContent = hasResult ? stripToolResultPrefix(message.resultContent!) : ''
|
const displayContent = hasResult ? stripToolResultPrefix(message.resultContent!) : ''
|
||||||
|
|
||||||
|
const isTaskTool = message.toolName === 'task'
|
||||||
|
const taskResult = isTaskTool && hasResult ? parseTaskResult(message.resultContent!) : null
|
||||||
|
const isSubAgent = !!message.subagentTaskId
|
||||||
|
const subagentType = (message.arguments as Record<string, unknown> | null)?.subagent_type as string || 'general'
|
||||||
|
const taskDescription = (message.arguments as Record<string, unknown> | null)?.description as string || ''
|
||||||
|
const taskPrompt = (message.arguments as Record<string, unknown> | null)?.prompt as string || ''
|
||||||
|
|
||||||
|
// task tool 专用的状态配色
|
||||||
|
const taskStatusConfig = {
|
||||||
|
success: { dot: 'bg-emerald-400', label: '成功', borderColor: 'border-emerald-500/40', labelColor: 'text-emerald-400' },
|
||||||
|
failed: { dot: 'bg-red-400', label: '失败', borderColor: 'border-red-500/40', labelColor: 'text-red-400' },
|
||||||
|
timeout: { dot: 'bg-amber-400', label: '超时', borderColor: 'border-amber-500/40', labelColor: 'text-amber-400' },
|
||||||
|
} as const
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-3 animate-slide-in">
|
<div className="flex gap-3 animate-slide-in">
|
||||||
<div className={`flex h-7 w-7 shrink-0 items-center justify-center rounded-full mt-0.5 ${statusConfig.avatarBg}`}>
|
<div className={`flex h-7 w-7 shrink-0 items-center justify-center rounded-full mt-0.5 ${
|
||||||
|
isTaskTool ? 'bg-violet-500/20' : statusConfig.avatarBg
|
||||||
|
}`}>
|
||||||
|
{isTaskTool ? (
|
||||||
|
<Bot className="h-3.5 w-3.5 text-violet-400" />
|
||||||
|
) : (
|
||||||
<Terminal className={`h-3.5 w-3.5 ${statusConfig.avatarIcon}`} />
|
<Terminal className={`h-3.5 w-3.5 ${statusConfig.avatarIcon}`} />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="max-w-[80%] min-w-0">
|
<div className="max-w-[80%] min-w-0">
|
||||||
<div className="flex items-center gap-2 mb-1">
|
<div className="flex items-center gap-2 mb-1">
|
||||||
<span className="text-xs font-medium text-zinc-400">{message.toolName || 'Tool'}</span>
|
<span className="text-xs font-medium text-zinc-400">{message.toolName || 'Tool'}</span>
|
||||||
|
{isTaskTool && (
|
||||||
|
<span className="text-xs px-1.5 py-0.5 rounded bg-violet-500/10 text-violet-400">
|
||||||
|
子智能体·{subagentType}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{!isTaskTool && isSubAgent && (
|
||||||
|
<span className="text-xs px-1.5 py-0.5 rounded bg-violet-500/10 text-violet-400">
|
||||||
|
子智能体
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
<span className="text-xs text-zinc-600">{formatTime(message.timestamp)}</span>
|
<span className="text-xs text-zinc-600">{formatTime(message.timestamp)}</span>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
onClick={() => setToolExpanded(!toolExpanded)}
|
onClick={() => setToolExpanded(!toolExpanded)}
|
||||||
className={`cursor-pointer rounded-xl border bg-[#1a1a25]/60 w-full transition-all duration-500 hover:bg-[#1a1a25]/80 group ${statusConfig.fullBorder}`}
|
className={`cursor-pointer rounded-xl border bg-[#1a1a25]/60 w-full transition-all duration-500 hover:bg-[#1a1a25]/80 group ${
|
||||||
|
taskResult ? taskStatusConfig[taskResult.status].borderColor : statusConfig.fullBorder
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
{/* Header row */}
|
{/* Header row */}
|
||||||
<div className="flex items-center gap-2 px-3 py-2">
|
<div className="flex items-center gap-2 px-3 py-2">
|
||||||
<span className={`inline-block h-2 w-2 rounded-full flex-shrink-0 ${statusConfig.dot} transition-colors duration-500`} />
|
<span className={`inline-block h-2 w-2 rounded-full flex-shrink-0 transition-colors duration-500 ${
|
||||||
<span className="text-sm font-medium text-zinc-300 truncate">{message.toolName || 'Tool'}</span>
|
taskResult ? taskStatusConfig[taskResult.status].dot : statusConfig.dot
|
||||||
<span className={`text-xs flex-shrink-0 transition-colors duration-500 ${statusConfig.labelColor}`}>
|
}`} />
|
||||||
{statusConfig.label}
|
<span className="text-sm font-medium text-zinc-300 truncate">
|
||||||
|
{isTaskTool ? (taskDescription || '子智能体任务') : (message.toolName || 'Tool')}
|
||||||
</span>
|
</span>
|
||||||
{hasResult && <CopyButton text={displayContent} />}
|
<span className={`text-xs flex-shrink-0 transition-colors duration-500 ${
|
||||||
|
taskResult ? taskStatusConfig[taskResult.status].labelColor : statusConfig.labelColor
|
||||||
|
}`}>
|
||||||
|
{taskResult ? taskStatusConfig[taskResult.status].label : statusConfig.label}
|
||||||
|
</span>
|
||||||
|
{hasResult && <CopyButton text={taskResult ? taskResult.output : displayContent} />}
|
||||||
<span className="ml-auto flex-shrink-0">
|
<span className="ml-auto flex-shrink-0">
|
||||||
{toolExpanded ? (
|
{toolExpanded ? (
|
||||||
<ChevronDown className="h-3.5 w-3.5 text-zinc-500" />
|
<ChevronDown className="h-3.5 w-3.5 text-zinc-500" />
|
||||||
@ -208,7 +266,7 @@ export function MessageBubble({ message }: MessageBubbleProps) {
|
|||||||
{/* Collapsed preview */}
|
{/* Collapsed preview */}
|
||||||
{!toolExpanded && (
|
{!toolExpanded && (
|
||||||
<>
|
<>
|
||||||
{hasArgs && argsPreview && (
|
{hasArgs && argsPreview && !taskResult && (
|
||||||
<div className="px-3 pb-1 text-xs text-zinc-500 font-mono line-clamp-3"
|
<div className="px-3 pb-1 text-xs text-zinc-500 font-mono line-clamp-3"
|
||||||
style={{
|
style={{
|
||||||
display: '-webkit-box',
|
display: '-webkit-box',
|
||||||
@ -219,12 +277,37 @@ export function MessageBubble({ message }: MessageBubbleProps) {
|
|||||||
{argsPreview}
|
{argsPreview}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{hasResult ? (
|
{taskResult && taskResult.summary && (
|
||||||
|
<div className="px-3 pb-1 text-xs text-zinc-400 line-clamp-2">
|
||||||
|
{taskResult.summary}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{taskResult ? (
|
||||||
|
<>
|
||||||
|
<div className="px-3 pb-1">
|
||||||
|
<button
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation()
|
||||||
|
onNavigateToSubAgent?.(taskResult.task_id, taskDescription || '子智能体任务')
|
||||||
|
}}
|
||||||
|
className="text-xs text-[#00f0ff] hover:text-[#00f0ff]/80 hover:underline transition-colors flex items-center gap-1"
|
||||||
|
>
|
||||||
|
<span>查看完整会话</span>
|
||||||
|
<span>→</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div className="px-3 pb-2 text-xs text-[#00f0ff]/50 flex items-center gap-1 select-none">
|
||||||
|
<span>点击查看子智能体输出</span>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
) : hasResult ? (
|
||||||
<div className="px-3 pb-2 text-xs text-[#00f0ff]/50 flex items-center gap-1 select-none">
|
<div className="px-3 pb-2 text-xs text-[#00f0ff]/50 flex items-center gap-1 select-none">
|
||||||
<span>点击查看工具结果</span>
|
<span>点击查看工具结果</span>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="px-3 pb-2 text-xs text-zinc-500">等待工具执行...</div>
|
<div className="px-3 pb-2 text-xs text-zinc-500">
|
||||||
|
{isTaskTool ? '子智能体正在执行...' : '等待工具执行...'}
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@ -232,6 +315,50 @@ export function MessageBubble({ message }: MessageBubbleProps) {
|
|||||||
{/* Expanded */}
|
{/* Expanded */}
|
||||||
{toolExpanded && (
|
{toolExpanded && (
|
||||||
<div className="border-t border-white/8 px-3 py-2 space-y-2">
|
<div className="border-t border-white/8 px-3 py-2 space-y-2">
|
||||||
|
{taskResult ? (
|
||||||
|
<>
|
||||||
|
{taskPrompt && (
|
||||||
|
<div>
|
||||||
|
<div className="text-xs font-medium text-zinc-500 mb-1">任务指令</div>
|
||||||
|
<pre className="text-xs text-zinc-400 font-mono whitespace-pre-wrap bg-black/20 rounded-lg p-2 overflow-x-auto max-h-32 overflow-y-auto">
|
||||||
|
{taskPrompt}
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{taskResult.summary && (
|
||||||
|
<div className={`rounded-lg px-3 py-2 ${
|
||||||
|
taskResult.status === 'success' ? 'bg-emerald-500/10 border border-emerald-500/30' :
|
||||||
|
taskResult.status === 'failed' ? 'bg-red-500/10 border border-red-500/30' :
|
||||||
|
'bg-amber-500/10 border border-amber-500/30'
|
||||||
|
}`}>
|
||||||
|
<div className="text-xs font-medium text-zinc-500 mb-0.5">摘要</div>
|
||||||
|
<div className="text-sm text-zinc-300">{taskResult.summary}</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<div className="text-xs font-medium text-zinc-500 mb-1">输出</div>
|
||||||
|
<div className="markdown-content text-sm leading-relaxed bg-black/20 rounded-lg p-3 max-h-96 overflow-y-auto">
|
||||||
|
<ReactMarkdown remarkPlugins={[remarkGfm]}>
|
||||||
|
{taskResult.output}
|
||||||
|
</ReactMarkdown>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-xs text-zinc-600 font-mono select-all">
|
||||||
|
task_id: {taskResult.task_id}
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation()
|
||||||
|
onNavigateToSubAgent?.(taskResult.task_id, taskDescription || '子智能体任务')
|
||||||
|
}}
|
||||||
|
className="text-xs text-[#00f0ff] hover:text-[#00f0ff]/80 hover:underline transition-colors flex items-center gap-1"
|
||||||
|
>
|
||||||
|
<span>查看完整会话</span>
|
||||||
|
<span>→</span>
|
||||||
|
</button>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
{hasArgs && (
|
{hasArgs && (
|
||||||
<div>
|
<div>
|
||||||
<div className="text-xs font-medium text-zinc-500 mb-1">参数</div>
|
<div className="text-xs font-medium text-zinc-500 mb-1">参数</div>
|
||||||
@ -251,6 +378,8 @@ export function MessageBubble({ message }: MessageBubbleProps) {
|
|||||||
{!hasArgs && !hasResult && (
|
{!hasArgs && !hasResult && (
|
||||||
<div className="text-xs text-zinc-500">等待工具执行...</div>
|
<div className="text-xs text-zinc-500">等待工具执行...</div>
|
||||||
)}
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -5,9 +5,10 @@ import { Sparkles } from 'lucide-react'
|
|||||||
|
|
||||||
interface MessageListProps {
|
interface MessageListProps {
|
||||||
messages: ChatMessage[]
|
messages: ChatMessage[]
|
||||||
|
onNavigateToSubAgent?: (taskId: string, description: string) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
export function MessageList({ messages }: MessageListProps) {
|
export function MessageList({ messages, onNavigateToSubAgent }: MessageListProps) {
|
||||||
const bottomRef = useRef<HTMLDivElement>(null)
|
const bottomRef = useRef<HTMLDivElement>(null)
|
||||||
const containerRef = useRef<HTMLDivElement>(null)
|
const containerRef = useRef<HTMLDivElement>(null)
|
||||||
|
|
||||||
@ -41,7 +42,7 @@ export function MessageList({ messages }: MessageListProps) {
|
|||||||
className="h-full overflow-y-auto p-6 space-y-6"
|
className="h-full overflow-y-auto p-6 space-y-6"
|
||||||
>
|
>
|
||||||
{messages.map((message) => (
|
{messages.map((message) => (
|
||||||
<MessageBubble key={message.id} message={message} />
|
<MessageBubble key={message.id} message={message} onNavigateToSubAgent={onNavigateToSubAgent} />
|
||||||
))}
|
))}
|
||||||
<div ref={bottomRef} />
|
<div ref={bottomRef} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { useState, useCallback, useRef, useMemo } from 'react'
|
import { useState, useCallback, useEffect, useRef, useMemo } from 'react'
|
||||||
import type {
|
import type {
|
||||||
Command,
|
Command,
|
||||||
ChatMessage,
|
ChatMessage,
|
||||||
@ -13,6 +13,7 @@ import type {
|
|||||||
TopicList,
|
TopicList,
|
||||||
TopicSummary,
|
TopicSummary,
|
||||||
Session,
|
Session,
|
||||||
|
TaskMessagesLoaded,
|
||||||
} from '../types/protocol'
|
} from '../types/protocol'
|
||||||
|
|
||||||
// 简化后的层级状态
|
// 简化后的层级状态
|
||||||
@ -35,6 +36,9 @@ interface UseChatReturn {
|
|||||||
// 是否只读(WebSocket 通道始终可写)
|
// 是否只读(WebSocket 通道始终可写)
|
||||||
isReadOnly: boolean
|
isReadOnly: boolean
|
||||||
|
|
||||||
|
// 子智能体视图
|
||||||
|
subAgentView: SubAgentView | null
|
||||||
|
|
||||||
// 方法
|
// 方法
|
||||||
handleMessage: (content: string) => void
|
handleMessage: (content: string) => void
|
||||||
handleCommand: (command: Command) => void
|
handleCommand: (command: Command) => void
|
||||||
@ -49,6 +53,19 @@ interface UseChatReturn {
|
|||||||
// 初始化方法
|
// 初始化方法
|
||||||
requestSessionList: () => Command
|
requestSessionList: () => Command
|
||||||
requestTopicList: () => Command | null
|
requestTopicList: () => Command | null
|
||||||
|
|
||||||
|
// 子智能体导航方法
|
||||||
|
enterSubAgentView: (taskId: string, description: string) => Command
|
||||||
|
exitSubAgentView: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SubAgentView {
|
||||||
|
taskId: string
|
||||||
|
description: string
|
||||||
|
subagentType: string
|
||||||
|
status: string
|
||||||
|
summary?: string
|
||||||
|
messages: ChatMessage[]
|
||||||
}
|
}
|
||||||
|
|
||||||
const DEFAULT_CHANNEL = 'websocket'
|
const DEFAULT_CHANNEL = 'websocket'
|
||||||
@ -63,6 +80,7 @@ export function useChat(): UseChatReturn {
|
|||||||
const [session, setSession] = useState<Session | null>(null)
|
const [session, setSession] = useState<Session | null>(null)
|
||||||
const [topics, setTopics] = useState<Topic[]>([])
|
const [topics, setTopics] = useState<Topic[]>([])
|
||||||
const [selectedTopic, setSelectedTopic] = useState<string | null>(null)
|
const [selectedTopic, setSelectedTopic] = useState<string | null>(null)
|
||||||
|
const [subAgentView, setSubAgentView] = useState<SubAgentView | null>(null)
|
||||||
|
|
||||||
// Message ID generator
|
// Message ID generator
|
||||||
const messageIdCounter = useRef(0)
|
const messageIdCounter = useRef(0)
|
||||||
@ -71,13 +89,137 @@ export function useChat(): UseChatReturn {
|
|||||||
return `msg_${Date.now()}_${messageIdCounter.current}`
|
return `msg_${Date.now()}_${messageIdCounter.current}`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ref to track subAgentView for use in callbacks
|
||||||
|
const subAgentViewRef = useRef<SubAgentView | null>(null)
|
||||||
|
|
||||||
const isConnected = useMemo(() => connectionId !== null, [connectionId])
|
const isConnected = useMemo(() => connectionId !== null, [connectionId])
|
||||||
const sessionId = useMemo(() => session?.id ?? null, [session])
|
const sessionId = useMemo(() => session?.id ?? null, [session])
|
||||||
const chatId = useMemo(() => sessionId ?? DEFAULT_CHAT_ID, [sessionId])
|
const chatId = useMemo(() => sessionId ?? DEFAULT_CHAT_ID, [sessionId])
|
||||||
|
|
||||||
|
// Extract subagent_task_id from a message if present
|
||||||
|
const getSubagentTaskId = (message: WsOutbound): string | undefined => {
|
||||||
|
if (message.type === 'tool_call' || message.type === 'tool_result') {
|
||||||
|
return (message as ToolCall | ToolResult).subagent_task_id
|
||||||
|
}
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert a server message to ChatMessage (extracted from handleServerMessage logic)
|
||||||
|
const serverMessageToChatMessage = (message: WsOutbound): ChatMessage | null => {
|
||||||
|
switch (message.type) {
|
||||||
|
case 'assistant_response': {
|
||||||
|
const msg = message as AssistantResponse
|
||||||
|
const role = msg.role === 'user' || msg.role === 'tool' ? msg.role : 'assistant'
|
||||||
|
return {
|
||||||
|
id: msg.id,
|
||||||
|
role: role as ChatMessage['role'],
|
||||||
|
content: msg.content,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
type: 'message',
|
||||||
|
attachments: msg.attachments,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 'tool_call': {
|
||||||
|
const msg = message as ToolCall
|
||||||
|
return {
|
||||||
|
id: msg.id,
|
||||||
|
role: 'tool',
|
||||||
|
content: msg.content,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
type: 'tool_call',
|
||||||
|
toolName: msg.tool_name,
|
||||||
|
toolCallId: msg.tool_call_id,
|
||||||
|
arguments: msg.arguments,
|
||||||
|
subagentTaskId: msg.subagent_task_id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 'tool_result': {
|
||||||
|
const msg = message as ToolResult
|
||||||
|
return {
|
||||||
|
id: msg.id,
|
||||||
|
role: 'tool',
|
||||||
|
content: msg.content,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
type: 'tool_result',
|
||||||
|
toolName: msg.tool_name,
|
||||||
|
toolCallId: msg.tool_call_id,
|
||||||
|
subagentTaskId: msg.subagent_task_id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 'tool_pending': {
|
||||||
|
const msg = message as ToolPending
|
||||||
|
return {
|
||||||
|
id: msg.id,
|
||||||
|
role: 'tool',
|
||||||
|
content: `${msg.content}\n\n${msg.resume_hint}`,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
type: 'tool_pending',
|
||||||
|
toolName: msg.tool_name,
|
||||||
|
toolCallId: msg.tool_call_id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 'error': {
|
||||||
|
return {
|
||||||
|
id: generateMessageId(),
|
||||||
|
role: 'assistant',
|
||||||
|
content: `Error: ${message.message}`,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
type: 'message',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Append a server message to the sub-agent view
|
||||||
|
const appendToSubAgentViewMessage = (message: WsOutbound) => {
|
||||||
|
const chatMsg = serverMessageToChatMessage(message)
|
||||||
|
if (chatMsg) {
|
||||||
|
setSubAgentView((prev) =>
|
||||||
|
prev
|
||||||
|
? { ...prev, messages: [...prev.messages, chatMsg] }
|
||||||
|
: prev
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const handleServerMessage = useCallback((message: WsOutbound) => {
|
const handleServerMessage = useCallback((message: WsOutbound) => {
|
||||||
console.log('Received message:', message)
|
console.log('Received message:', message)
|
||||||
|
|
||||||
|
// Route to sub-agent view if active
|
||||||
|
const currentSubAgentView = subAgentViewRef.current
|
||||||
|
if (currentSubAgentView) {
|
||||||
|
if (message.type === 'task_messages_loaded') {
|
||||||
|
const msg = message as TaskMessagesLoaded
|
||||||
|
setSubAgentView((prev) =>
|
||||||
|
prev
|
||||||
|
? {
|
||||||
|
...prev,
|
||||||
|
subagentType: msg.subagent_type,
|
||||||
|
status: msg.status,
|
||||||
|
summary: msg.summary,
|
||||||
|
}
|
||||||
|
: prev
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Route messages to sub-agent view:
|
||||||
|
// - Messages without subagent_task_id = loaded history, always accept
|
||||||
|
// - Messages with subagent_task_id = live emitter, only accept if matching
|
||||||
|
const msgSubagentTaskId = getSubagentTaskId(message)
|
||||||
|
if (!msgSubagentTaskId || msgSubagentTaskId === currentSubAgentView.taskId) {
|
||||||
|
appendToSubAgentViewMessage(message)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// In main view, skip sub-agent messages (they belong to sub-agent view)
|
||||||
|
if (getSubagentTaskId(message)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
switch (message.type) {
|
switch (message.type) {
|
||||||
case 'session_established': {
|
case 'session_established': {
|
||||||
const msg = message as SessionEstablished
|
const msg = message as SessionEstablished
|
||||||
@ -168,6 +310,7 @@ export function useChat(): UseChatReturn {
|
|||||||
toolName: msg.tool_name,
|
toolName: msg.tool_name,
|
||||||
toolCallId: msg.tool_call_id,
|
toolCallId: msg.tool_call_id,
|
||||||
arguments: msg.arguments,
|
arguments: msg.arguments,
|
||||||
|
subagentTaskId: msg.subagent_task_id,
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
break
|
break
|
||||||
@ -185,6 +328,7 @@ export function useChat(): UseChatReturn {
|
|||||||
type: 'tool_result',
|
type: 'tool_result',
|
||||||
toolName: msg.tool_name,
|
toolName: msg.tool_name,
|
||||||
toolCallId: msg.tool_call_id,
|
toolCallId: msg.tool_call_id,
|
||||||
|
subagentTaskId: msg.subagent_task_id,
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
break
|
break
|
||||||
@ -297,6 +441,41 @@ export function useChat(): UseChatReturn {
|
|||||||
}
|
}
|
||||||
}, [sessionId])
|
}, [sessionId])
|
||||||
|
|
||||||
|
// Keep ref in sync with state
|
||||||
|
useEffect(() => {
|
||||||
|
subAgentViewRef.current = subAgentView
|
||||||
|
}, [subAgentView])
|
||||||
|
|
||||||
|
const enterSubAgentView = useCallback((taskId: string, description: string): Command => {
|
||||||
|
const newView: SubAgentView = {
|
||||||
|
taskId,
|
||||||
|
description,
|
||||||
|
subagentType: '',
|
||||||
|
status: 'loading',
|
||||||
|
messages: [],
|
||||||
|
}
|
||||||
|
// Sync ref immediately so WebSocket response routing works correctly
|
||||||
|
subAgentViewRef.current = newView
|
||||||
|
setSubAgentView(newView)
|
||||||
|
return {
|
||||||
|
type: 'load_task_messages',
|
||||||
|
task_id: taskId,
|
||||||
|
}
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const exitSubAgentView = useCallback(() => {
|
||||||
|
subAgentViewRef.current = null
|
||||||
|
setSubAgentView(null)
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
// Memoize messages: when in sub-agent view, return sub-agent messages
|
||||||
|
const resolvedMessages = useMemo(() => {
|
||||||
|
if (subAgentView) {
|
||||||
|
return subAgentView.messages
|
||||||
|
}
|
||||||
|
return messages
|
||||||
|
}, [subAgentView, messages])
|
||||||
|
|
||||||
// WebSocket 通道始终可写
|
// WebSocket 通道始终可写
|
||||||
const isReadOnly = false
|
const isReadOnly = false
|
||||||
|
|
||||||
@ -308,9 +487,10 @@ export function useChat(): UseChatReturn {
|
|||||||
chatId,
|
chatId,
|
||||||
topics,
|
topics,
|
||||||
selectedTopic,
|
selectedTopic,
|
||||||
messages,
|
messages: resolvedMessages,
|
||||||
isLoading,
|
isLoading,
|
||||||
isReadOnly,
|
isReadOnly,
|
||||||
|
subAgentView,
|
||||||
handleMessage,
|
handleMessage,
|
||||||
handleCommand,
|
handleCommand,
|
||||||
clearMessages,
|
clearMessages,
|
||||||
@ -320,5 +500,7 @@ export function useChat(): UseChatReturn {
|
|||||||
switchTopic,
|
switchTopic,
|
||||||
requestSessionList,
|
requestSessionList,
|
||||||
requestTopicList,
|
requestTopicList,
|
||||||
|
enterSubAgentView,
|
||||||
|
exitSubAgentView,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -51,6 +51,7 @@ export interface ToolCall {
|
|||||||
arguments: unknown
|
arguments: unknown
|
||||||
content: string
|
content: string
|
||||||
role: string
|
role: string
|
||||||
|
subagent_task_id?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ToolResult {
|
export interface ToolResult {
|
||||||
@ -60,6 +61,7 @@ export interface ToolResult {
|
|||||||
tool_name: string
|
tool_name: string
|
||||||
content: string
|
content: string
|
||||||
role: string
|
role: string
|
||||||
|
subagent_task_id?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ToolPending {
|
export interface ToolPending {
|
||||||
@ -151,6 +153,15 @@ export interface Pong {
|
|||||||
type: 'pong'
|
type: 'pong'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface TaskMessagesLoaded {
|
||||||
|
type: 'task_messages_loaded'
|
||||||
|
task_id: string
|
||||||
|
description: string
|
||||||
|
subagent_type: string
|
||||||
|
status: string
|
||||||
|
summary?: string
|
||||||
|
}
|
||||||
|
|
||||||
export type WsOutbound =
|
export type WsOutbound =
|
||||||
| AssistantResponse
|
| AssistantResponse
|
||||||
| ToolCall
|
| ToolCall
|
||||||
@ -164,6 +175,7 @@ export type WsOutbound =
|
|||||||
| SessionSaved
|
| SessionSaved
|
||||||
| TopicList
|
| TopicList
|
||||||
| ChannelList
|
| ChannelList
|
||||||
|
| TaskMessagesLoaded
|
||||||
| Pong
|
| Pong
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@ -226,6 +238,11 @@ export interface ListTopicsCommand {
|
|||||||
session_id: string
|
session_id: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface LoadTaskMessagesCommand {
|
||||||
|
type: 'load_task_messages'
|
||||||
|
task_id: string
|
||||||
|
}
|
||||||
|
|
||||||
export type Command =
|
export type Command =
|
||||||
| CreateSessionCommand
|
| CreateSessionCommand
|
||||||
| ListSessionsCommand
|
| ListSessionsCommand
|
||||||
@ -238,6 +255,7 @@ export type Command =
|
|||||||
| ListChannelsCommand
|
| ListChannelsCommand
|
||||||
| ListSessionsByChannelCommand
|
| ListSessionsByChannelCommand
|
||||||
| ListTopicsCommand
|
| ListTopicsCommand
|
||||||
|
| LoadTaskMessagesCommand
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
// UI Types
|
// UI Types
|
||||||
@ -256,6 +274,15 @@ export interface ChatMessage {
|
|||||||
status?: 'calling' | 'result' | 'pending'
|
status?: 'calling' | 'result' | 'pending'
|
||||||
resultContent?: string
|
resultContent?: string
|
||||||
callContent?: string
|
callContent?: string
|
||||||
|
subagentTaskId?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
/** task 工具返回的 JSON 结构 */
|
||||||
|
export interface TaskToolResult {
|
||||||
|
status: 'success' | 'failed' | 'timeout'
|
||||||
|
summary: string
|
||||||
|
output: string
|
||||||
|
task_id: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Topic {
|
export interface Topic {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user