Tech News
← Back to articles

Show HN: Inkeep (YC W23) – Agent Builder to create agents in code or visually

read original related products more articles

Inkeep Agents

With Inkeep, you can build and ship AI Agents with a No-Code Visual Builder or TypeScript SDK. Agents can be edited in code or no-code with full 2-way sync, so technical and non-technical teams can create and manage their Agents in a single platform. To get started, see the docs.

Two ways to build

No-Code Visual Builder

A no-code drag-and-drop canvas designed to allow any team to create and manage teams of Agents visually.

TypeScript Agents SDK

A code-first approach for building and managing multi-agent systems. Engineering teams to build with the tools and developer experience they expect.

import { agent , subAgent } from "@inkeep/agents-sdk" ; const helloAgent = subAgent ( { id : "hello-agent" , name : "Hello Agent" , description : "Says hello" , prompt : 'Only reply with the word "hello", but you may do it in different variations like h3110, h3110w0rld, h3110w0rld! etc...' , } ) ; export const basicAgent = agent ( { id : "basic-agent" , name : "Basic Agent" , description : "A basic agent" , defaultSubAgent : helloAgent , subAgents : ( ) => [ helloAgent ] , } ) ;

The Visual Builder and TypeScript SDK are fully interoperable: your technical and non-technical teams can edit and manage Agents in either format and switch or collaborate with others at any time.

Use Cases

... continue reading