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
Currently, every agent is a functional script, and manager.py fires them off using subprocess. The better way to work this is to change to a class-based model, with each agent inheriting from a base agent class. This minimises code copy-pasta, and allows manager.py to use something like multiprocessing to manage the agents.
The text was updated successfully, but these errors were encountered:
Currently, every agent is a functional script, and manager.py fires them off using subprocess. The better way to work this is to change to a class-based model, with each agent inheriting from a base agent class. This minimises code copy-pasta, and allows manager.py to use something like multiprocessing to manage the agents.
The text was updated successfully, but these errors were encountered: