(value: str)
| 20 | |
| 21 | |
| 22 | def _normalize_served_quality(value: str) -> str: |
| 23 | normalized = str(value or "").strip().lower() |
| 24 | return normalized if normalized in {"economy", "balanced", "premium"} else "" |
| 25 | |
| 26 | |
| 27 | def prompt_hash(text: str) -> str: |
no outgoing calls
no test coverage detected