Removed list_messages method from thread (#564)

This commit is contained in:
Dmytro Struk
2025-08-29 22:51:52 +00:00
committed by GitHub
parent a80db062b2
commit 2037e533b3
8 changed files with 16 additions and 33 deletions
@@ -227,8 +227,9 @@ async def test_chat_client_agent_update_thread_messages(chat_client: ChatClient)
assert result.text == "test response"
assert thread.service_thread_id is None
assert thread.message_store is not None
chat_messages: list[ChatMessage] | None = await thread.list_messages()
chat_messages: list[ChatMessage] = await thread.message_store.list_messages()
assert chat_messages is not None
assert len(chat_messages) == 2