mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Python: [BREAKING] Removed default "store" value (#2443)
* Removed default store value * Small fix
This commit is contained in:
committed by
GitHub
Unverified
parent
d302bffc63
commit
b8260ae24c
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user