Airgentic Help
This page explains the major building blocks of Airgentic and how they work together. Understanding this mental model will help you operate the platform effectively and make sound decisions about configuration.

Airgentic is an AI-powered platform that helps your customers get answers, complete tasks, and connect with your team when needed. It does this by combining:
These components work together to deliver a complete customer service experience.
Everything Airgentic knows comes from your knowledge sources:
| Source type | How it works |
|---|---|
| Web crawl | Automatically crawls and indexes pages from your website based on your crawler settings |
| Uploaded documents | PDFs, Word documents, and HTML files you upload directly |
The platform extracts text, processes it, and stores it in a searchable index. When users ask questions, the AI searches this index to find relevant information.
Related documentation:
- Data Sync — Running and scheduling crawls
- Crawler Settings — Controlling what gets indexed
- Upload Documents — Adding files directly
Search is the foundation of how the AI finds information to answer questions. When a user asks something:
You can configure how results are categorised, adjust ranking with boosts, and add synonym rules to improve matching.
Related documentation:
- Search Settings — Categories, mappings, and synonyms
When the AI has search results, it generates an answer by:
The AI is designed to stay grounded in your content — it should not make things up. If it cannot find relevant information, it tells the user it cannot answer.
Agents are specialist AI assistants that handle different types of questions. Every service has:
Each agent has its own:
- Role description — What types of questions it handles (used by Frontline to decide when to delegate)
- Prompt — Instructions that define its personality, tone, and behaviour
- Functions — Actions it can perform (search, send email, call APIs)
- Search scope — Which parts of your content it can access
When a user asks a question, the Frontline agent reads the question and decides whether to handle it directly or delegate to a specialist.
Related documentation:
- Agents Overview — Managing agents
- Creating an Agent — Step-by-step setup
- Editing an Agent — Configuration options
Prompts are the instructions that tell agents how to behave. A prompt typically includes:
Airgentic uses modular prompts — reusable components that can be shared across agents. This keeps instructions consistent without duplication.
Related documentation:
- Edit Prompts — Managing prompts
- Editing a Prompt — Writing and version control
Functions let agents perform actions beyond answering from the knowledge base:
| Capability | Example |
|---|---|
| Search | Look up information with specific filters or scopes |
| Send enquiry details to your support team | |
| HTTP requests | Call external APIs (order lookup, CRM, etc.) |
| Maps | Display store locations or service areas |
| Escalation | Collect contact details and hand off to a human |
Functions are written in AirScript (a secure subset of Python) and defined with schemas that tell the AI when and how to use them.
Note: Functions are an advanced capability. Many services work well using only the built-in search and answer functionality.
Related documentation:
- Functions Overview — What functions are and how they work
- AirScript Functions — Technical reference
Curated answers let you override the AI with exact, approved content for specific questions:
Use curated answers when:
- The answer isn't in your content
- Multiple sources conflict and you want one authoritative answer
- Exact wording is required (legal, policy, contact details)
Related documentation:
- Curated Answers — Setup and best practices
Human handoff lets your team monitor conversations and intervene when needed:
The Human Handoff screen shows active conversations in real time, with automatic flags for conversations that need attention (thumbs down, failed answers, negative sentiment, help requests).
Related documentation:
- Human Handoff — Monitoring and intervention
Secure services restrict access to authenticated users only — ideal for internal use cases like staff intranets. With secure services:
Related documentation:
- Secure Services Overview — Setup and authorisation options
- How Secure Authentication Works — Technical explanation
When voice mode is enabled, users can speak to the AI using their microphone. The AI responds with both text and audio. Voice mode uses the same agents and knowledge sources as text conversations.
Related documentation:
- Voice Mode Settings — Configuration options
Insights help you understand how your service is performing:
| Report | What it shows |
|---|---|
| Customer Service Insights | Answer completeness, user ratings, sentiment, agent distribution, geography, conversation threads |
| Search Insights | Top queries, top clicked results, search trends, geographic distribution |
Use insights to identify content gaps, spot problem areas, and track improvement over time.
Related documentation:
- Customer Service Insights — Conversation analytics
- Search Insights — Search analytics
Here's a simplified view of what happens when a user asks a question:
If curated answers exist for the question's intent, they take priority. If the agent has functions enabled, it may call them (e.g., to look up additional information or escalate to a human).
Understanding this model helps you: