List Agents API

Get access to all agents in the database.

You'll need to get cerebrum's AgentManagerclass first. You can access it like this:

from cerebrum.manager.agent import AgentManager

You can instantiate the AgentManagerlike this and list all the available agents:

agent_manager = AgentManager(base_url='https://app.aios.foundation')
agent_manager.list_available_agents()

Last updated