| 469 | func (e *SessionSummaryEvent) GetSessionID() string { return e.SessionID } |
| 470 | |
| 471 | type SessionCompactionEvent struct { |
| 472 | AgentContext |
| 473 | |
| 474 | Type string `json:"type"` |
| 475 | SessionID string `json:"session_id"` |
| 476 | Status string `json:"status"` |
| 477 | } |
| 478 | |
| 479 | func SessionCompaction(sessionID, status, agentName string) Event { |
| 480 | return &SessionCompactionEvent{ |
nothing calls this directly
no outgoing calls
no test coverage detected