(session: &'a AgentSession, event: &'a TurnEvent)
| 29 | } |
| 30 | |
| 31 | fn make_options<'a>(session: &'a AgentSession, event: &'a TurnEvent) -> TurnRecordOptions<'a> { |
| 32 | TurnRecordOptions { |
| 33 | session, |
| 34 | event, |
| 35 | turn_number: 3, |
| 36 | turn_duration_ms: 12400, |
| 37 | prompt: Some("Fix the authentication bug in login.rs".to_string()), |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | // truncate_prompt tests |
| 42 |
no outgoing calls
no test coverage detected