-
Notifications
You must be signed in to change notification settings - Fork 45.6k
[WIP] Implement task management system for more structured progress on goals #495
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
[WIP] Implement task management system for more structured progress on goals #495
Conversation
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
1 similar comment
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
This is a mass message from the AutoGPT core team. For more details (and for infor on joining our Discord), please refer to: |
@collijk fyi |
I'll be trying to incorporate (something like) this into #4799 |
Closing old PRS |
Design Document
https://docs.google.com/document/d/1pHtgK4OaFxy2POColR4nYJ3wemU4XLTEoxTLQunzaU0/edit?usp=sharing
Background
One issue I have seen while experimenting with AutoGPT is that it will go deep down irrelevant rabbit holes. In order to address this I am experimenting with having a more structured way of organizing tasks.
Changes
TaskManager
: A singleton class responsible for managing tasks, including creating tasks, retrieving tasks by ID, updating task states, and displaying task hierarchy.TaskState
:An enumeration representing the state of a task (NOT_STARTED, IN_PROGRESS, COMPLETED).Task
: A class representing individual tasks with properties like ID, name, state, parent task, and subtasks.--taskmanager
command line flag to enable and disableupdate_task_state
andset_current_task
Test Plan
Outstanding items
Change Safety