You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RetrieveUserProxyAgent is not making use of customized_prompt
Steps to reproduce
Create a RetrieveUserProxyAgent with a customized_prompt in its retrieve_config
Start a chat using a_initiate_chat() with an AssistantAgent
Expected Behavior
The AssistantAgent should receive the customized prompt but it doesn't.
Screenshots and logs
No response
Additional Information
AutoGen: v0.2.14
OS: Windows 10
Python: 3.10.11
We narrowed it down to a_initiate_chat() calling a_generate_init_message() which is not implemented for RetrieveUserProxyAgent so it ends up falling back to ConversableAgent.a_generate_init_message() which does not make use of customized_prompt
The text was updated successfully, but these errors were encountered:
PyroGenesis
changed the title
[Bug]: Issue with a_initiate_chat() in RetrieveUserProxyAgent
[Bug]: RetrieveUserProxyAgent ignores customized_promptFeb 21, 2024
This still falls back to ConversableAgent.a_generate_init_message() but that's fine because that triggers message_generator as a Callable which returns a message with the customized_prompt and the vector db context.
Describe the bug
RetrieveUserProxyAgent
is not making use ofcustomized_prompt
Steps to reproduce
RetrieveUserProxyAgent
with acustomized_prompt
in itsretrieve_config
a_initiate_chat()
with anAssistantAgent
Expected Behavior
The
AssistantAgent
should receive the customized prompt but it doesn't.Screenshots and logs
No response
Additional Information
AutoGen: v0.2.14
OS: Windows 10
Python: 3.10.11
We narrowed it down to
a_initiate_chat()
callinga_generate_init_message()
which is not implemented forRetrieveUserProxyAgent
so it ends up falling back toConversableAgent.a_generate_init_message()
which does not make use ofcustomized_prompt
The text was updated successfully, but these errors were encountered: