pub struct FactoryAgentSummary {Show 14 fields
pub active_ms: i64,
pub activity: Option<String>,
pub agent_id: String,
pub agent_type: String,
pub completed_at: Option<i64>,
pub display_name: Option<String>,
pub label: String,
pub phase_id: Option<String>,
pub requested_model: Option<String>,
pub resolved_model: Option<String>,
pub run_id: String,
pub started_at: Option<i64>,
pub status: String,
pub tool_call_id: String,
}Expand description
Prompt-safe durable identity and live status for a direct factory agent.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§active_ms: i64Accumulated active agent time in milliseconds.
activity: Option<String>Prompt-safe live activity text.
agent_id: StringStable direct-agent identifier.
agent_type: StringRegistered agent type.
completed_at: Option<i64>Epoch milliseconds when the agent completed.
display_name: Option<String>Friendly, non-unique name intended for display
label: StringFriendly, non-unique name intended for display
phase_id: Option<String>Phase identifier active when the agent was launched, or null.
requested_model: Option<String>Model requested when the agent was launched.
resolved_model: Option<String>Concrete model resolved for the agent.
run_id: StringOwning factory run identifier.
started_at: Option<i64>Epoch milliseconds when the agent started.
status: StringCurrent durable or live agent status.
tool_call_id: StringTool-call identifier that launched the agent.
Trait Implementations§
Source§impl Clone for FactoryAgentSummary
impl Clone for FactoryAgentSummary
Source§fn clone(&self) -> FactoryAgentSummary
fn clone(&self) -> FactoryAgentSummary
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more