(self)
| 25 | |
| 26 | class TestProviderConfig: |
| 27 | def test_empty_config(self) -> None: |
| 28 | cfg = load_providers() |
| 29 | assert len(cfg.providers) == 0 |
| 30 | assert cfg.keyed_models() == set() |
| 31 | |
| 32 | def test_add_provider(self) -> None: |
| 33 | cfg = add_provider("deepseek", "sk-test-key-123") |
nothing calls this directly
no test coverage detected