Skip to content

api-evangelist/langbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Langbase (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.json: https://raw.githubusercontent.com/api-evangelist/langbase/refs/heads/main/apis.yml

Tags

  • AI
  • Agents
  • RAG
  • LLM
  • Serverless

Timestamps

  • Created: 2026-07-01
  • Modified: 2026-07-01

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 message array and streams token deltas as Server-Sent Events when stream is true.

Tags

  • Pipes
  • Agents
  • Completions

Properties

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 controls, and SSE streaming. Bring-your-own LLM keys are supported via the LB-LLM-Key header.

Tags

  • Agent
  • LLM
  • Multi-Provider

Properties

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 metadata filters, without running your own vector database or embedding pipeline.

Tags

  • Memory
  • RAG
  • Vector Store

Properties

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 can be resumed via a thread identifier.

Tags

  • Threads
  • Conversation
  • State

Properties

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 extracts content from one or more web pages for agents to ground on.

Tags

  • Tools
  • Web Search
  • Crawl

Properties

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.

Tags

  • Parser
  • Documents
  • Extraction

Properties

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.

Tags

  • Chunker
  • RAG
  • Preprocessing

Properties

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.

Tags

  • Embeddings
  • Vectors
  • RAG

Properties

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, Memory, and Tools API calls into a single reliable execution.

Tags

  • Workflows
  • Orchestration
  • Agents

Properties

Common Properties

Maintainers

FN: Kin Lane Email: kin@apievangelist.com

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors