| 48 | |
| 49 | @dataclass(frozen=True, slots=True) |
| 50 | class CandidateExperience: |
| 51 | reliability: float = 0.5 |
| 52 | latency: float = 0.5 |
| 53 | feedback: float = 0.5 |
| 54 | cache_affinity: float = 0.5 |
| 55 | input_cost_multiplier: float = 1.0 |
| 56 | reward_mean: float = 0.5 |
| 57 | samples: int = 0 |
| 58 | |
| 59 | |
| 60 | class ModelExperienceStorage(ABC): |
no outgoing calls
no test coverage detected