Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.powabase.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Problem with Assembling Your Own Stack

Building a production AI application typically requires stitching together 5–7 separate tools: a vector database for RAG, an agent framework for tool calling, a workflow engine for automation, an LLM gateway for model routing, an auth system for users, a file storage service for documents, and a database for application state. Each tool has its own API, deployment model, and failure modes. Agentic Platform replaces this entire assembly with a single, unified REST API — one endpoint, one auth model, one database, one deployment.

Comparison Overview

Comparison chart showing feature coverage: Agentic Platform covers RAG, Agents, Workflows, Database, Auth, and Storage. Other platforms cover only subsets.

vs Supabase

Supabase is an excellent general-purpose backend-as-a-service (Postgres, auth, storage, real-time) that Agentic Platform actually builds on — each project’s infrastructure uses Supabase components. The difference is purpose: Supabase provides the database and infrastructure primitives common to most SaaS apps, while Agentic Platform provides a good number of prebuilt agentic abstractions on top to accelerate development of AI-native applications.
CapabilityAgentic PlatformSupabase
DatabasePostgres + pgvector per project (included)Postgres + pgvector (included)
Auth & StorageGoTrue + Storage API per project (included)GoTrue + Storage API (included)
Document ingestionUpload API → automatic extraction (PDF, DOCX, images w/ OCR)No — build your own extraction pipeline
RAG pipeline4 indexing strategies, 4 retrieval methods, reranking, chunkingpgvector similarity search only — chunking, embedding, and retrieval pipeline are DIY
Agent frameworkReAct loop, 6 builtin tools, custom tools, MCP, hooks, approval flowNo agent framework — integrate LangChain or similar
Multi-agent orchestrationSupervisor, Sequential, Parallel strategiesNone
Workflow automationDAG-based workflows with webhooks, schedules, AI Copilot builderEdge Functions (serverless compute, no workflow engine)
StreamingSSE for agents, orchestrations, and workflows with event lifecycleReal-time subscriptions (row-level changes, not AI events)
Choose Supabase when you need a general-purpose backend without AI features. Choose Agentic Platform when your application’s core value is AI-powered — you get everything Supabase offers (Postgres, auth, storage, PostgREST) plus a complete AI abstraction layer.

vs LangChain / LangGraph

LangChain is the most popular AI framework, and LangGraph extends it with graph-based agent orchestration and durable state. They provide powerful abstractions for building AI applications — but they are frameworks, not infrastructure. You write code using their libraries, then deploy and operate everything yourself.
CapabilityAgentic PlatformLangChain / LangGraph
Deployment modelManaged API — no infrastructure to operateFramework — you deploy, scale, and monitor your own services
DatabasePostgres + pgvector included per projectNone — bring your own (Pinecone, Weaviate, pgvector, etc.)
AuthGoTrue included per projectNone — build your own auth layer
Document ingestionUpload API with automatic extractionDocument loaders (community-maintained, varying quality)
RAG4 indexing strategies, 4 retrieval methods, managed pipelineComponents for assembly — you build and maintain the pipeline
Agent frameworkManaged ReAct loop with streaming SSE, tools, hooks, approvalLangGraph agents with durable state, checkpointing, time-travel debugging
Multi-agent3 orchestration strategies via APIGraph-based agent coordination (flexible but complex)
ObservabilityRun history, events, and usage stored per sessionLangSmith (paid, starts at $39/user/month)
Workflow automationVisual + API workflow builder with triggers and schedulingLangGraph workflows (code-defined, no visual builder in OSS)
Choose LangChain/LangGraph when you need maximum flexibility, custom execution models, or durable agent state with time-travel debugging. Choose Agentic Platform when you want a production-ready API without managing infrastructure — especially if you also need auth, storage, and a database alongside your AI features.

vs Agno

Agno (formerly Phidata) is a lightweight Python agent framework with built-in agentic RAG and multi-agent teams. It emphasizes simplicity and speed — agents are pure Python objects, not graphs or chains. AgentOS provides a monitoring and management control plane.
CapabilityAgentic PlatformAgno
Deployment modelManaged API with per-project isolationFramework — you deploy agents in your own infrastructure
Database & AuthPostgres + pgvector + GoTrue includedNone — bring your own database and auth
RAG pipeline4 indexing strategies, 4 retrieval methods, managed document ingestionAgentic RAG with hybrid search and reranking — but you manage the vector DB
Agent frameworkManaged ReAct with hooks, approval flow, session persistenceLightweight agents with tool calling and memory
Multi-agent3 strategies (Supervisor, Sequential, Parallel) via APITeams with role-based collaboration
Workflow automationDAG workflows with webhooks, schedules, AI CopilotAgno Workflows (code-defined sequential/parallel)
MCP supportRuntime tool discovery via MCP serversMCP server connections supported
ManagementBuilt-in dashboard, settings, per-project configAgentOS control plane (monitoring, playground)
Choose Agno when you want a lightweight Python framework and are comfortable managing your own infrastructure. Choose Agentic Platform when you want a fully managed backend with database, auth, storage, and AI — all accessible via REST API from any language.

vs Vectara

Vectara is a fully managed RAG-as-a-Service platform with excellent document processing, hybrid search, and built-in hallucination detection. It’s the strongest pure-RAG competitor — but it’s RAG-only.
CapabilityAgentic PlatformVectara
RAG pipeline4 indexing strategies (ChunkEmbed, PageIndex, GraphIndex, Doc2JSON), 4 retrieval methods, rerankingML-based chunking, hybrid search (neural + lexical), Boomerang reranker, hallucination detection
Document ingestionUpload API, OCR, multi-format extraction100+ format ingestion, zero-config
Agent frameworkFull ReAct loop with tools, hooks, MCP, streamingLimited — vectara-agentic library (thin wrapper on LlamaIndex)
Multi-agent orchestration3 strategies via APINone
Workflow automationDAG workflows with triggersNone
Database for app dataPostgres + PostgREST for custom tablesNone — document corpus only
Auth for end usersGoTrue with RLSAPI authentication only (not end-user auth)
Self-hostingYes (Docker or Kubernetes)No — managed cloud only
Multi-language supportAPI-driven (any language)100+ languages for search out of the box
Choose Vectara when RAG is your only need and you want zero-config document processing with best-in-class hallucination detection. Choose Agentic Platform when you need RAG plus agents, orchestration, workflows, a database, and auth — a complete AI application backend.

vs Dify

Dify is a popular open-source LLM application builder with a visual workflow canvas, built-in RAG, and multiple app types (chatbot, agent, workflow). It’s a strong platform for prototyping and building AI apps, especially with its visual interface.
CapabilityAgentic PlatformDify
RAG depth4 indexing strategies including tree-based (PageIndex) and structured extraction (Doc2JSON)Standard chunking + embedding with configurable strategies
Agent frameworkReAct with hooks, approval flow, MCP, 6 builtin toolsReAct agents with tool calling and conversation variables
Multi-agent3 orchestration strategies (Supervisor, Sequential, Parallel)Workflow chaining of LLM/agent nodes (no native multi-agent collaboration)
Workflow engineAPI-first DAGs with webhooks, cron/interval schedulesVisual canvas with branching, loops, error handling
Database for app dataPostgres + PostgREST (your own tables with RLS)Internal Postgres only (for Dify state, not user data)
Auth for end usersGoTrue with email/OAuth/magic linksAdmin auth only (no end-user auth, enterprise SSO is paid)
API-first designEvery feature accessible via REST APIVisual-first design — API is secondary
Per-project isolationFully isolated infrastructure per projectShared infrastructure, workspace-level isolation
Choose Dify when you want a visual builder for prototyping AI apps quickly, especially if your team prefers drag-and-drop over code. Choose Agentic Platform when you need an API-first backend that your application code calls directly, with deep RAG capabilities, per-project isolation, and included database/auth infrastructure.

vs n8n

n8n is a powerful general-purpose workflow automation platform with 400+ integration nodes. Its AI capabilities (AI Agent node, LLM nodes, memory nodes) are add-ons to a workflow engine, not purpose-built AI primitives.
CapabilityAgentic Platformn8n
Primary focusAI application backend (RAG, agents, orchestration)General-purpose workflow automation with AI add-ons
RAG pipelineManaged end-to-end: ingest, index (4 strategies), retrieve (4 methods), rerankNone built-in — connect to external vector DBs and embedding APIs via nodes
Agent depthReAct with tools, hooks, approval, session memory, streamingAI Agent node with tool calling and memory (no approval flow, limited streaming)
Integrations6 builtin tools, custom HTTP tools, MCP servers400+ pre-built integration nodes (Slack, Salesforce, databases, etc.)
AI streamingSSE with full event lifecycle (tool calls, approval, steps)Not designed for streaming AI responses
Workflow triggersAPI, webhook, cron/interval schedulesManual, webhook, cron, and app-specific triggers
Choose n8n when you need to automate business processes across many SaaS tools and want to add some AI capabilities. Choose Agentic Platform when AI is your application’s core function and you need deep RAG, agent, and orchestration capabilities.

vs CrewAI

CrewAI is a Python framework focused on multi-agent orchestration with role-based teams. It excels at modeling agent collaboration patterns — hierarchical delegation, sequential pipelines, and consensual decision-making.
CapabilityAgentic PlatformCrewAI
Deployment modelManaged APIFramework — deploy in your infrastructure
Multi-agent3 strategies via API (Supervisor, Sequential, Parallel)3 process types (sequential, hierarchical, consensual) — code-defined
RAG4 indexing strategies, 4 retrieval methods, managed pipelineBasic RAG with ChromaDB (no hybrid search, no reranking)
Database & AuthPostgres + GoTrue includedNone included
Workflow automationDAG workflows with visual builder and AI CopilotCrewAI Flows (code-defined, no visual builder)
Human-in-the-loopApproval hooks with SSE events and approve endpointNone built-in
Language supportREST API — any languagePython only
Choose CrewAI when you want fine-grained Python control over multi-agent collaboration patterns and are comfortable managing your own infrastructure. Choose Agentic Platform when you want managed multi-agent orchestration with a complete backend (database, auth, RAG) accessible from any language.

What Makes Agentic Platform Different

DifferentiatorWhat It Means
Unified APIRAG, agents, orchestration, workflows, database, auth, and storage — all from one REST API with one auth model
Deep RAG (not just vector search)4 indexing strategies (including LLM-powered tree indexing and structured JSON extraction), 4 retrieval methods, cross-encoder reranking
Per-project isolationEach project gets its own Postgres, API gateway, auth service, storage, and AI worker — no shared state between projects
API-first, language-agnosticEvery feature works via REST. Build in Python, TypeScript, Go, Rust, or any language that speaks HTTP
Human-in-the-loop as a primitiveApproval hooks pause agent execution via SSE and wait for a decision via API — built into the agent runtime, not bolted on
Three orchestration strategiesSupervisor (autonomous delegation), Sequential (pipeline), Parallel (fan-out + merge) — choose the right pattern for your use case
AI Copilot for workflowsDescribe what you want in natural language and the copilot generates the workflow graph
Managed infrastructureNo vector DB to provision, no agent server to deploy, no auth system to build — it’s all included and running

Next Steps

Platform Overview

Understand the three core modules and how they work together.

Quickstart

Build an end-to-end RAG agent in 5 minutes.

Architecture

Per-project isolation, database schemas, and request routing.