Agentic Trust gives your customers instant, accurate answers by combining a knowledge base, custom actions, workflows, and identity verification into a single embeddable widget.Documentation Index
Fetch the complete documentation index at: https://docs.agentictrust.com/llms.txt
Use this file to discover all available pages before exploring further.
Knowledge Base
Upload PDFs, docs, CSVs, or crawl your website. The RAG pipeline retrieves relevant context so the agent answers from your content.
Custom Actions
Connect any API with OpenAPI specs, manual configuration, or MCP tools. The agent can take actions on behalf of users.
Workflows
Define specialized behaviors for common scenarios like refunds, onboarding, or troubleshooting.
Identity Verification
Verify end users with HMAC signatures or JWT tokens so the agent can access personalized data securely.
Widget Integration
Install
@agentictrust/ui for React/Next.js, or drop a script tag into your site. Configure appearance, register client-side tools, and control the widget programmatically.Analytics
Monitor conversations, collect feedback, and track resolution rates from the dashboard.
How it works
- Configure your agent in the dashboard — set a system prompt, choose a model, and upload knowledge sources.
- Embed the widget on your site with the
@agentictrust/uiReact SDK or a single script tag. - Users ask questions and the agent streams answers using your knowledge base, actions, and workflows.
- Monitor and improve through the activity feed, feedback ratings, and conversation history.
Architecture overview
Agentic Trust runs as a Next.js application backed by PostgreSQL with pgvector. Chat requests are routed to a Cloudflare Worker that hosts a Durable Object per conversation, with MCP tool servers for knowledge retrieval, custom actions, and workflow execution.| Component | Technology |
|---|---|
| Dashboard & API | Next.js (App Router), React, Tailwind CSS |
| Database | PostgreSQL + pgvector (Drizzle ORM) |
| Auth | WorkOS AuthKit (dashboard), API keys (widget) |
| AI Models | Claude Sonnet 4.6, Haiku 4.5, GPT-5.2, Gemini, and more |
| Embeddings | OpenAI text-embedding-3-small (1536 dimensions) |
| Agent Runtime | Cloudflare Worker + Durable Object (one DO per conversation) |
Next steps
Quickstart
Get your first agent running in under 5 minutes.
API Reference
Explore the full runtime API with interactive examples.