What You'll Build
- A fully functional AI voice agent that answers phone calls
- Custom knowledge base with your business information
- Phone number forwarding to your AI agent
- Real-time call monitoring dashboard
Prerequisites
Before you start, you'll need:
- An Alfred AI account (free trial available)
- A business phone number (or Alfred can provide one)
- Your business information: hours, services, FAQ content
- 10 minutes of focused time
No coding is required for basic setup. If you want to use the API for advanced customization, we'll cover that too.
Step 1: Create Your Voice Agent (2 minutes)
Log into your Alfred dashboard and navigate to Voice AI → Create Agent. You'll configure three things:
Choose Your Voice
Alfred offers 24 neural voices across different accents, genders, and personality styles. For most businesses, we recommend starting with a warm, professional voice. You can always change it later.
Popular choices:
- Sarah — Warm, professional, North American English
- James — Confident, business-oriented, mid-Atlantic accent
- Priya — Friendly, clear, neutral accent
Set Your Greeting
This is what callers hear first. Keep it concise and professional:
"Thank you for calling [Your Business Name]. This is Alfred, your AI assistant. How can I help you today?"
Avoid long greetings. Callers want to state their purpose quickly. Under 8 seconds is ideal.
Define Your Agent's Role
Write a brief system prompt that tells the AI who it is and what it should do. Example:
You are an AI receptionist for Brightside Dental Clinic.
Your primary tasks:
- Schedule appointments (hygiene, exam, emergency)
- Answer questions about services and hours
- Collect new patient information
- Transfer urgent calls to the on-call dentist
Hours: Monday-Friday 8AM-5PM, Saturday 9AM-1PM
Address: 123 Main Street, Suite 200
Emergency line: 555-0199
Step 2: Build Your Knowledge Base (3 minutes)
Your voice agent is only as good as its knowledge. There are three ways to add information:
Option A: Upload Documents
Upload PDFs, Word docs, or text files containing your business information. Alfred automatically extracts and indexes the content. Great for existing FAQ documents, service menus, or policy papers.
Option B: Add Q&A Pairs
Manually enter questions and answers for the most common inquiries. This gives you the most control over responses:
Q: What are your hours?
A: We're open Monday through Friday, 8 AM to 5 PM,
and Saturday from 9 AM to 1 PM. We're closed on Sundays.
Q: Do you accept walk-ins?
A: We accept walk-ins for emergencies, but we recommend
scheduling an appointment for the best experience.
I can help you book one right now if you'd like.
Q: What insurance do you accept?
A: We accept most major insurance plans including
Delta Dental, Cigna, Aetna, Blue Cross, and MetLife.
I can verify your specific plan before your visit.
Option C: Connect Your Website
Point Alfred at your website URL. It crawls your pages and extracts business information, services, pricing, and FAQs automatically. This is the fastest option for businesses with comprehensive websites.
Step 3: Configure Call Handling (2 minutes)
Set Business Hours Behavior
Configure how Alfred handles calls during and after business hours:
- During hours: Answer, assist, schedule, transfer to staff if needed
- After hours: Answer, provide info, schedule for next business day, handle emergencies
Define Transfer Rules
Tell Alfred when to transfer calls to a human. Examples:
Transfer to human when:
- Caller explicitly asks for a person
- Issue involves a complaint or legal matter
- Emergency situations (medical, billing dispute)
- Caller is angry or frustrated after 2 attempts
Transfer destination:
- General: (555) 123-4567
- Emergency: (555) 123-4568
- Billing: (555) 123-4569
Enable Call Recording
Turn on call recording for quality assurance. All recordings are encrypted and stored securely. You can review them in your dashboard to improve your AI's performance over time.
Step 4: Connect Your Phone Number (2 minutes)
You have three options for routing calls to your AI agent:
Option A: Forward Your Existing Number
Set up call forwarding from your existing business phone to your Alfred number. Most carriers support "forward on no answer" — meaning the AI only picks up if no one else does.
How to set up forwarding (most carriers):
# Forward all calls
Dial: *72 + [your Alfred number]
# Forward on no answer (after 3 rings)
Dial: *71 + [your Alfred number]
# Cancel forwarding
Dial: *73
Option B: Get a New Number
Alfred can provision a new phone number for your AI agent. Choose local or toll-free. This is ideal for adding a dedicated AI line alongside your existing number.
Option C: SIP/VoIP Integration
For businesses using VoIP systems (RingCentral, 8x8, Vonage), Alfred integrates via SIP trunk. This requires some technical setup but provides the most seamless experience.
Step 5: Test Your Agent (1 minute)
Before going live, test your agent thoroughly:
Quick Test
Click the "Test Call" button in your dashboard. Alfred will call your personal phone so you can interact with your agent as a customer would.
What to Test
- Greeting — does it sound right?
- Common questions — are answers accurate?
- Scheduling — does it book appointments correctly?
- Edge cases — what happens with unusual requests?
- Transfer — does it transfer when it should?
- After-hours — does behavior change correctly?
Make adjustments to your knowledge base and system prompt based on test results. Most agents need 2-3 rounds of testing before they're ready for production.
Ready to Build Your Voice Agent?
Sign up for Alfred and have your AI voice agent answering calls in under 10 minutes.
Create Your Agent See Voice DemoAdvanced: API Integration
For developers who want programmatic control, Alfred's Voice API provides full access to agent configuration, call management, and real-time events.
Create an Agent via API
curl -X POST https://api.gositeme.com/v1/voice/agents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Reception Agent",
"voice": "sarah-warm",
"greeting": "Thank you for calling. How can I help?",
"system_prompt": "You are a helpful receptionist...",
"transfer_number": "+15551234567",
"hours": {
"monday": "08:00-17:00",
"tuesday": "08:00-17:00",
"wednesday": "08:00-17:00",
"thursday": "08:00-17:00",
"friday": "08:00-17:00",
"saturday": "09:00-13:00"
}
}'
Handle Real-Time Events
Set up webhooks to receive events during calls — useful for integrating with your CRM, booking system, or custom workflows:
// Webhook payload for appointment booking
{
"event": "appointment_booked",
"call_id": "call_abc123",
"caller": "+15559876543",
"appointment": {
"type": "dental_exam",
"date": "2026-03-15",
"time": "10:00",
"provider": "Dr. Smith",
"notes": "New patient, has dental anxiety"
}
}
Full API documentation is available at the Developer Portal.
Tips for Best Results
1. Keep the System Prompt Focused
Don't try to make your agent do everything. A focused agent that handles 5 tasks well is better than a generalist that handles 20 tasks poorly.
2. Use Real Caller Language
Write your Q&A pairs using the words your customers actually use, not industry jargon. If customers say "teeth cleaning" instead of "prophylactic oral hygiene procedure," your knowledge base should use "teeth cleaning."
3. Listen to Call Recordings
Review your first 50 calls. You'll discover questions you didn't anticipate, phrasing you didn't expect, and edge cases that need handling. Update your knowledge base accordingly.
4. Set Up Fallback Behavior
When the AI doesn't know the answer, it should say so gracefully and offer to transfer. "I don't have that information right now, but let me connect you with someone who does" is always better than making something up.
5. Iterate Weekly
The best AI agents improve continuously. Spend 15 minutes each week reviewing call logs, adding new Q&A pairs, and refining responses. After a month, your agent will handle 90%+ of calls flawlessly.
What's Next?
Once your basic voice agent is running, explore these advanced capabilities:
- Outbound calls: Alfred can make proactive calls for appointment reminders, follow-ups, and surveys
- Multi-agent fleet: Create specialized agents for different departments via the Fleet Dashboard
- Custom integrations: Connect to your CRM, calendar, or booking system via webhook or API
- Voice cloning: Clone your own voice or create a custom brand voice with Voice Cloning
- Analytics: Deep dive into call patterns, resolution rates, and customer satisfaction metrics
Build Your AI Voice Agent Now
No credit card required. Your first 50 calls are free. Go from zero to AI receptionist in 10 minutes.
Start Free Trial Voice Products
Someone from somewhere
just launched website.com
Just now