-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get rid of agent_input
and only rely on working memory
#917
Comments
Nasty bug, I'll see to it thanks |
Maybe I am still missing something about how CheshireCat works, but here
I see that you are trying to modify the
you are trying to modify the |
https://discord.com/channels/1092359754917089350/1092360210351398963/1288557418820800514 Probably this issue could be closed |
agent_input
and only rely on working memory
Thanks @AlessandroSpallina @alfredotoselli @matteocacciola for checking this out Please put and take stateful info from / to working memory Changed the name of the issue so we remember when and why ;) |
agent_input
and only rely on working memoryagent_input
and only rely on working memory
When a plugin developer wants to use the hook
before_agent_starts
for tasks like modifying the chat history, acting on agent_input.chat_history has no effect.This code isn't working:
Instead, acting on
cat.working_memory.history
is the right way to modify the conversation history. The following code is working properlyThe text was updated successfully, but these errors were encountered: