mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Removed list_messages method from thread (#564)
This commit is contained in:
committed by
GitHub
Unverified
parent
a80db062b2
commit
2037e533b3
@@ -632,7 +632,8 @@ class ChatClientAgent(AgentBase):
|
||||
messages: list[ChatMessage] = []
|
||||
if self.instructions:
|
||||
messages.append(ChatMessage(role=ChatRole.SYSTEM, text=self.instructions))
|
||||
messages.extend(await thread.list_messages() or [])
|
||||
if thread.message_store:
|
||||
messages.extend(await thread.message_store.list_messages() or [])
|
||||
messages.extend(input_messages or [])
|
||||
return thread, messages
|
||||
|
||||
|
||||
Reference in New Issue
Block a user