Returns true if the reasoning is essentially empty (no useful content).
(&self)
| 46 | |
| 47 | /// Returns true if the reasoning is essentially empty (no useful content). |
| 48 | pub fn is_empty(&self) -> bool { |
| 49 | self.intent.is_empty() |
| 50 | && self.outcome.is_empty() |
| 51 | && self.learnings.repo.is_empty() |
| 52 | && self.learnings.code.is_empty() |
| 53 | && self.learnings.workflow.is_empty() |
| 54 | && self.friction.is_empty() |
| 55 | && self.open_items.is_empty() |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | impl fmt::Display for TurnReasoning { |
no outgoing calls