(sessionID, agentName string)
| 176 | } |
| 177 | |
| 178 | func StreamStarted(sessionID, agentName string) Event { |
| 179 | return &StreamStartedEvent{ |
| 180 | Type: "stream_started", |
| 181 | SessionID: sessionID, |
| 182 | AgentContext: newAgentContext(agentName), |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | func (e *StreamStartedEvent) GetSessionID() string { return e.SessionID } |
| 187 |