(&self)
| 47 | /// Whether this mode emits `Token` events (real-time LLM output). |
| 48 | #[inline] |
| 49 | pub fn emits_tokens(&self) -> bool { |
| 50 | matches!(self, Self::Messages | Self::All) |
| 51 | } |
| 52 | |
| 53 | /// Whether this mode emits `ToolCall*` events. |
| 54 | #[inline] |
no outgoing calls
no test coverage detected