One option in the cost-aware fallback chain.
| 300 | |
| 301 | @dataclass(frozen=True, slots=True) |
| 302 | class FallbackOption: |
| 303 | """One option in the cost-aware fallback chain.""" |
| 304 | |
| 305 | model: str |
| 306 | cost_estimate: float |
| 307 | suggested_output_budget: int |
| 308 | |
| 309 | |
| 310 | @dataclass(frozen=True, slots=True) |
no outgoing calls