Skip to main content

What is Agent Builder?

Agent Builder is the Thesys platform for creating and publishing AI agents. You configure your agent — model, system prompt, knowledge sources, tools, and styling — through a visual editor at console.thesys.dev, then publish it as a shareable URL. Once published, you embed the agent into your own product using either the Embed Widget npm package or a direct iframe. Your users interact with the agent without ever leaving your site.

Key Capabilities

How It Works

1

Build your agent

Go to Agent Builder and create a new project. Configure the model, system prompt, knowledge sources, and tools.
2

Publish

Click Share in the editor toolbar. Your agent gets a unique URL like https://console.thesys.dev/app/your-slug.
3

Embed

Install the embed widget and add it to your site:
import { embedWidget } from 'agent-embed-widget';
import 'agent-embed-widget/dist/agent-embed-widget.css';

embedWidget({
  url: 'https://console.thesys.dev/app/your-slug',
});

Next Steps