List Agents
List all agents associated with a given user. This endpoint retrieves a list of all agents and their configurations associated with the specified user ID.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Name of the agent
List of tags to filter agents by
Response
The description of the agent.
The metadata of the agent.
The user id of the agent.
The human-friendly ID of the Agent
The name of the agent.
The datetime the agent was created.
The ids of the messages in the agent's in-context memory.
Represents the in-context memory of the agent. This includes both the Block
objects (labelled by sections), as well as tools to edit the blocks.
Attributes: memory (Dict[str, Block]): Mapping from memory block section to memory block.
The tools used by the agent.
The list of tool rules.
The tags associated with the agent.
The system prompt used by the agent.
The type of agent.
memgpt_agent
, split_thread_agent
, o1_agent
The LLM configuration used by the agent.
The embedding configuration used by the agent.