(session_id: &str, prompt: &str)
| 28 | } |
| 29 | |
| 30 | fn turn_start_event(session_id: &str, prompt: &str) -> TurnEvent { |
| 31 | TurnEvent::new(session_id, HookType::TurnStart).with_prompt(prompt) |
| 32 | } |
| 33 | |
| 34 | fn turn_end_event(session_id: &str) -> TurnEvent { |
| 35 | TurnEvent::new(session_id, HookType::TurnEnd) |
no test coverage detected