The Agent class should be completed. There are a few pieces of functionality that need to be considered here:
There may be more things that we decide to add in the future of course, but this list of functionality should get us started in terms of making Agents useful.
The
Agentclass should be completed. There are a few pieces of functionality that need to be considered here:add_to_context,mark_complete,mark_failed, and possibly more. TheAgentshould be able to pick multiple actions to execute in orderAgentshould be capable of sending a message to the user asking for clarification on a certain item, then when a response is received it will process the response. The user should be able to specify in a message whether they're talking to the assistant, or a specificAgentby adding anagentproperty to theGlobalChannelMessageobject.Agentshould be able to get a revised version of it's plan of action based on new context or other information gatheredThere may be more things that we decide to add in the future of course, but this list of functionality should get us started in terms of making
Agents useful.