(&self)
| 124 | /// Check if this is purely human-authored. |
| 125 | #[inline] |
| 126 | pub fn is_human(&self) -> bool { |
| 127 | matches!(self, CreditType::Human) |
| 128 | } |
| 129 | |
| 130 | /// Estimate the AI contribution level (0.0 = all human, 1.0 = all AI). |
| 131 | pub fn ai_contribution_estimate(&self) -> f32 { |