Custom Agents Overview
Building your own agents for the Open Agent Platform
Building Your Own Agents
We built Open Agent Platform with custom agents in mind. Although we offer a few pre-built agents, we encourage you to build your own agents, and use OAP as a platform to prototype, test and use them! This guide will help you build agents that are compatible with all of Open Agent Platform’s features.
Platform Requirements
OAP is built on top of LangGraph Platform, which means all agents which you build to be used in OAP must be LangGraph agents deployed on LangGraph Platform.
Agent Types
When building custom agents, you can create three main types:
- Standard Agents: These are single-purpose agents that handle specific tasks.
- Tools Agents: Agents that can access external tools via the MCP protocol.
- Supervisor Agents: Agents that can orchestrate and coordinate multiple other agents.
Development Flow
The typical development flow for creating custom agents involves:
- Developing and testing your agent locally using LangGraph
- Deploying your agent to LangGraph Platform
- Configuring your Open Agent Platform to connect to your deployed agent
- Testing and refining your agent through the OAP interface
Getting Started
To get started with building your own agents, we recommend:
- Familiarizing yourself with the LangGraph framework
- Studying the example agents we provide:
- Understanding how to make your agent configurable, as detailed in the Configuration section
Building custom agents allows you to create specialized AI assistants that can be easily managed and used through the Open Agent Platform interface.