Remove dead ServiceSettings.to_dict method

This commit is contained in:
Paul Kompfner
2026-02-17 15:15:18 -05:00
parent 1cad4210ce
commit 94a651cee2
2 changed files with 0 additions and 16 deletions

View File

@@ -75,10 +75,6 @@ class TestServiceSettings:
result = s.given_fields()
assert result == {"model": "gpt-4o", "custom_key": 42}
def test_to_dict(self):
s = ServiceSettings(model="gpt-4o")
assert s.to_dict() == {"model": "gpt-4o"}
def test_copy_is_deep(self):
s = ServiceSettings(model="gpt-4o")
s.extra = {"nested": {"a": 1}}