| 12 | |
| 13 | @dataclass(frozen=True, slots=True) |
| 14 | class CacheRequestPlan: |
| 15 | family: str |
| 16 | mode: str = "none" |
| 17 | prompt_cache_key: str = "" |
| 18 | retention: str = "" |
| 19 | anthropic_ttl: str = "" |
| 20 | cache_breakpoints: int = 0 |
| 21 | |
| 22 | |
| 23 | @dataclass(frozen=True, slots=True) |
no outgoing calls
no test coverage detected