Skip to Content
Getting StartedQuick Start

Quick Start

Get your first AI agent running in under 5 minutes.

Prerequisites

Step 1: Access the Agent Builder

  1. Log in to your AiQarus dashboard
  2. Navigate to Agents in the sidebar
  3. Click Create Agent

Step 2: Configure Your Agent

The Agent Builder wizard guides you through configuration:

Basic Information

FieldDescriptionExample
NameHuman-readable agent name”Customer Support Triage”
DescriptionWhat the agent does”Categorizes and routes support tickets”
ProjectWhich project this belongs to”Customer Success”

System Prompt

The system prompt defines your agent’s behavior. Write clear instructions:

You are a customer support triage agent. Your job is to: 1. Read incoming support tickets 2. Categorize them (billing, technical, general) 3. Assign priority (low, medium, high, urgent) 4. Route to the appropriate team Always explain your reasoning for categorization and priority.

Safety Constraints

Set limits to prevent runaway behavior:

ConstraintDescriptionRecommended
Max StepsMaximum TDAO iterations10-50
Max DurationTimeout in seconds300 (5 min)
Token LimitMax LLM tokens per run10,000-50,000

Step 3: Activate the Agent

  1. Review your configuration
  2. Click Activate
  3. Your agent is now ready to run

Once activated, an agent definition becomes immutable. To make changes, create a new version.

Step 4: Run Your Agent

  1. Click Run on your agent
  2. Provide input (structured form or natural language)
  3. Watch the execution in real-time

Example Input

{ "ticket": { "subject": "Cannot access my account", "body": "I've been locked out for 2 days. Urgent - I have a deadline tomorrow!", "customer_tier": "enterprise" } }

Example Output

{ "category": "technical", "priority": "urgent", "routing": "account_recovery_team", "reasoning": "Customer is locked out (technical issue). Enterprise tier with stated deadline makes this urgent. Routing to account recovery specialists." }

Step 5: View the Audit Trail

Every decision your agent makes is recorded:

  1. Go to the Runs tab
  2. Click on your run
  3. Expand each step to see the TDAO loop in action
  4. Click Verify Chain to validate audit integrity

Next Steps