| 63 | |
| 64 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 65 | pub struct AgentPart { |
| 66 | pub id: String, |
| 67 | pub session_id: String, |
| 68 | pub message_id: String, |
| 69 | pub name: String, |
| 70 | #[serde(skip_serializing_if = "Option::is_none")] |
| 71 | pub source: Option<AgentSource>, |
| 72 | } |
| 73 | |
| 74 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 75 | pub struct AgentSource { |
nothing calls this directly
no outgoing calls
no test coverage detected