-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Agentic memory #5227
base: main
Are you sure you want to change the base?
Agentic memory #5227
Conversation
Make memory optional. Filter out insights with negative scores.
Refactor memory paths. Enrich page logging.
Seed messages with random int for variability.
Save sessions as yaml for readability.
Eval simplifications.
…ified in settings.
python/packages/autogen-ext/src/autogen_ext/agentic_memory/README.md
Outdated
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/agent_wrapper.py
Outdated
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/agent_wrapper.py
Outdated
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/agentic_memory_controller.py
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/apprentice.py
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/page_logger.py
Outdated
Show resolved
Hide resolved
python/packages/autogen-ext/src/autogen_ext/agentic_memory/_agentic_memory_bank.py
Show resolved
Hide resolved
I haven't gone deep into the implementation logics, but I believe from just API level, we need to work on it to make sure it aligns with the rest of the framework. E.g., serializable configuration is already supported, and we should be using that. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR is simply too large. Please propose your changes progressively and iteratively using a separate sequence of PRs. We cannot effectively review these changes as is.
@jackgerrits we will be refactoring this in the current branch first |
Adds a baseline implementation of agentic memory to the autogen-ext package.
For technical details, see the Agentic Memory README.
To see it in action, view the page logs generated while running the code samples.
This PR is a draft pending a few remaining items in-progress:
autogen-core/memory