(state: 'InvestigationState', _feedback_lower: str)
| 331 | |
| 332 | |
| 333 | def _build_decrease_contamination(state: 'InvestigationState', _feedback_lower: str) -> dict: |
| 334 | current = (state.plans[0].get('params', {}).get('contamination', 0.1) |
| 335 | if state.plans else 0.1) |
| 336 | return { |
| 337 | 'action': 'adjust_contamination', |
| 338 | 'value': adjust_contamination_down(current), |
| 339 | } |
| 340 | |
| 341 | |
| 342 | def _build_increase_contamination(state: 'InvestigationState', _feedback_lower: str) -> dict: |
nothing calls this directly
no test coverage detected
searching dependent graphs…