| 7 | |
| 8 | @dataclass(slots=True) |
| 9 | class ModelProviderConfig: |
| 10 | openai_base: str = "" |
| 11 | openai_key: str = "" |
| 12 | nvidia_key: str = "" |
| 13 | together_key: str = "" |
| 14 | temperature: float = 0.0 |
| 15 | |
| 16 | |
| 17 | @dataclass(slots=True) |
no outgoing calls
no test coverage detected