A model discovered from the upstream catalog.
| 311 | |
| 312 | @dataclass(frozen=True, slots=True) |
| 313 | class DiscoveredModel: |
| 314 | """A model discovered from the upstream catalog.""" |
| 315 | id: str |
| 316 | provider: str |
| 317 | owned_by: str |
| 318 | pricing: ModelPricing |
| 319 | capabilities: ModelCapabilities |
| 320 | |
| 321 | |
| 322 | # --------------------------------------------------------------------------- |
no outgoing calls