Skip to main content

Description

Agent Composer is a framework that allows you to compose custom query path implementations using pre-made building blocks. By combining primitives such as search tools, third-party API/MCP tools, and various LLMs, you can construct arbitrary computational graphs and configure them to build specialized agents.
Template agents (Basic Search and Agentic Search) are available for self-serve users. Full Agent Composer capabilities—including the visual workflow builder for custom workflows, YAML customization, and the prompt-based workflow generator—are available in public preview for enterprise users.

Read the launch announcement

Learn how Agent Composer reduces complex technical tasks from hours to minutes.

Two Ways to Build

The framework offers two ways to construct workflows:
  1. YAML Configuration: Specify a YAML with a specific format describing the graph and its configuration. Enter this YAML in the “Agent Composer” tab during agent creation.
  2. Visual Workflow Builder: Use the visual frontend builder, which internally translates to YAML.

Key Concepts

Example: Minimal Agent

This minimal example:
  • Accepts a query string as input
  • Searches the datastore for relevant documents
  • Generates a response based on the query and retrieved documents
  • Returns the response as output