Python: [BREAKING] Removed default "store" value (#2443)

* Removed default store value

* Small fix
This commit is contained in:
Dmytro Struk
2025-11-25 09:53:08 -08:00
committed by GitHub
Unverified
parent d302bffc63
commit b8260ae24c
5 changed files with 38 additions and 36 deletions
@@ -1423,12 +1423,12 @@ async def test_prepare_options_store_parameter_handling() -> None:
chat_options = ChatOptions(store=None, conversation_id=None)
options = await client.prepare_options(messages, chat_options)
assert options["store"] is False
assert "store" not in options
assert "previous_response_id" not in options
chat_options = ChatOptions()
options = await client.prepare_options(messages, chat_options)
assert options["store"] is False
assert "store" not in options
assert "previous_response_id" not in options