Langbase
Langbase is a serverless AI developer platform for building, deploying, and scaling AI agents and applications. Its composable primitives - Pipes (agents), Memory (managed RAG), Threads, Agent (one API over 100+ LLMs), Tools, Parser, Chunker, and Embed - are exposed through a single Bearer-authenticated REST API at api.langbase.com, with Server-Sent Events (SSE) streaming for generative endpoints.
APIs
Langbase Pipes API
Run, create, update, and list Pipes - composable, deployable AI agents with a system prompt, model, tools, variables, and memory. POST /v1/pipes/run executes a Pipe over a messa...
Langbase Agent API
A single liquid AI mesh endpoint (POST /v1/agent/run) that runs a prompt against 100+ LLMs from all top providers using a provider:model_id string, with tools, generation contro...
Langbase Memory API
Managed, serverless RAG. Create and list memory stores, upload and manage documents, and retrieve semantically similar chunks (POST /v1/memory/retrieve) with a topK control and ...
Langbase Threads API
Persist and manage conversation state. Create, get, update, and delete threads, and append or list messages, so multi-turn agent conversations keep their history server-side and...
Langbase Tools API
Managed agent tools. POST /v1/tools/web-search runs a live web search (via providers such as Exa) returning URLs and extracted content, and POST /v1/tools/crawl fetches and extr...
Langbase Parser API
Extract clean text from uploaded documents (PDF, CSV, XLSX, XLS, and more, up to 10 MB) via a multipart POST /v1/parser, as the ingestion front door for RAG and content pipelines.
Langbase Chunker API
Split large text into overlapping, retrieval-ready chunks (POST /v1/chunker) with configurable chunkMaxLength and chunkOverlap, for building RAG and search indexes.
Langbase Embed API
Generate embedding vectors for up to 100 text chunks per request (POST /v1/embed) using OpenAI, Cohere, or Google embedding models, defaulting to openai:text-embedding-3-large.
Langbase Workflows API
Durable, step-based orchestration for composing agents, memory, and tools into multi-step AI workflows with retries and timeouts. Workflows compose the underlying Agent, Pipes, ...