By Sagar Shankaran, Founder of CallSphere
Learn how to build an AI agent that guides prospective students through university admissions, tracks application deadlines, manages document checklists, and provides real-time status updates.
Key takeaways
University admissions offices handle thousands of inquiries each cycle. Prospective students ask about requirements, deadlines, missing documents, and application status — often the same questions repeated across emails, phone calls, and walk-ins. An AI admissions agent can handle these queries instantly, freeing staff to focus on holistic review and relationship building.
This tutorial builds a complete admissions agent that manages application requirements, tracks deadlines, maintains document checklists, and provides status updates.
Every admissions system starts with structured data about programs and their requirements.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
flowchart LR
CALLER(["Student or Parent"])
subgraph TEL["Telephony"]
SIP["Twilio SIP and PSTN"]
end
subgraph BRAIN["Education AI Agent"]
STT["Streaming STT<br/>Deepgram or Whisper"]
NLU{"Intent and<br/>Entity Extraction"}
TOOLS["Tool Calls"]
TTS["Streaming TTS<br/>ElevenLabs or Rime"]
end
subgraph DATA["Live Data Plane"]
CRM[("CRM and Notes")]
CAL[("Calendar and<br/>Schedule")]
KB[("Knowledge Base<br/>and Policies")]
end
subgraph OUT["Outcomes"]
O1(["Enrollment captured"])
O2(["Tour scheduled"])
O3(["Counselor callback"])
end
CALLER --> SIP --> STT --> NLU
NLU -->|Lookup| TOOLS
TOOLS <--> CRM
TOOLS <--> CAL
TOOLS <--> KB
NLU --> TTS --> SIP --> CALLER
NLU -->|Resolved| O1
NLU -->|Schedule| O2
NLU -->|Escalate| O3
style CALLER fill:#f1f5f9,stroke:#64748b,color:#0f172a
style NLU fill:#4f46e5,stroke:#4338ca,color:#fff
style O1 fill:#059669,stroke:#047857,color:#fff
style O2 fill:#0ea5e9,stroke:#0369a1,color:#fff
style O3 fill:#f59e0b,stroke:#d97706,color:#1f2937
from dataclasses import dataclass, field
from datetime import date, datetime
from enum import Enum
from typing import Optional
class ApplicationStatus(Enum):
NOT_STARTED = "not_started"
IN_PROGRESS = "in_progress"
SUBMITTED = "submitted"
UNDER_REVIEW = "under_review"
DECISION_MADE = "decision_made"
class DocumentStatus(Enum):
MISSING = "missing"
UPLOADED = "uploaded"
VERIFIED = "verified"
REJECTED = "rejected"
@dataclass
class ProgramRequirement:
program_name: str
degree_level: str
department: str
gpa_minimum: float
test_scores_required: list[str]
required_documents: list[str]
application_deadline: date
early_deadline: Optional[date] = None
supplemental_essays: int = 0
@dataclass
class ApplicantDocument:
document_type: str
status: DocumentStatus
uploaded_at: Optional[datetime] = None
reviewer_notes: Optional[str] = None
@dataclass
class Application:
applicant_id: str
applicant_name: str
email: str
program: str
status: ApplicationStatus = ApplicationStatus.NOT_STARTED
documents: list[ApplicantDocument] = field(default_factory=list)
submitted_at: Optional[datetime] = None
decision: Optional[str] = None
This model captures the full lifecycle from initial interest through final decision.
The agent needs tools for checking requirements, managing documents, and tracking status.
from agents import Agent, function_tool, Runner
import json
# Simulated database
PROGRAMS_DB: dict[str, ProgramRequirement] = {}
APPLICATIONS_DB: dict[str, Application] = {}
def seed_programs():
PROGRAMS_DB["cs-ms"] = ProgramRequirement(
program_name="Master of Science in Computer Science",
degree_level="Masters",
department="Computer Science",
gpa_minimum=3.2,
test_scores_required=["GRE General"],
required_documents=[
"Transcripts", "Statement of Purpose",
"Three Letters of Recommendation", "Resume",
"GRE Score Report"
],
application_deadline=date(2026, 12, 15),
early_deadline=date(2026, 10, 1),
supplemental_essays=1,
)
PROGRAMS_DB["mba"] = ProgramRequirement(
program_name="Master of Business Administration",
degree_level="Masters",
department="Business School",
gpa_minimum=3.0,
test_scores_required=["GMAT or GRE"],
required_documents=[
"Transcripts", "Resume", "Two Essays",
"Two Letters of Recommendation", "GMAT/GRE Score"
],
application_deadline=date(2026, 1, 15),
early_deadline=date(2025, 10, 15),
supplemental_essays=2,
)
seed_programs()
@function_tool
def get_program_requirements(program_code: str) -> str:
"""Retrieve admission requirements for a specific program."""
program = PROGRAMS_DB.get(program_code)
if not program:
available = ", ".join(PROGRAMS_DB.keys())
return f"Program not found. Available programs: {available}"
days_left = (program.application_deadline - date.today()).days
return json.dumps({
"program": program.program_name,
"department": program.department,
"gpa_minimum": program.gpa_minimum,
"test_scores": program.test_scores_required,
"required_documents": program.required_documents,
"deadline": program.application_deadline.isoformat(),
"days_until_deadline": days_left,
"early_deadline": (
program.early_deadline.isoformat()
if program.early_deadline else None
),
"supplemental_essays": program.supplemental_essays,
})
@function_tool
def check_document_status(applicant_id: str) -> str:
"""Check which documents have been submitted and which are missing."""
app = APPLICATIONS_DB.get(applicant_id)
if not app:
return "No application found for this applicant ID."
program = PROGRAMS_DB.get(app.program)
if not program:
return "Program not found for this application."
submitted = {d.document_type for d in app.documents
if d.status != DocumentStatus.MISSING}
required = set(program.required_documents)
missing = required - submitted
return json.dumps({
"applicant": app.applicant_name,
"program": app.program,
"documents_submitted": list(submitted),
"documents_missing": list(missing),
"completion_percentage": round(
len(submitted) / len(required) * 100
) if required else 100,
})
@function_tool
def get_application_status(applicant_id: str) -> str:
"""Get the current status of a student application."""
app = APPLICATIONS_DB.get(applicant_id)
if not app:
return "No application found. Please start a new application."
return json.dumps({
"applicant": app.applicant_name,
"program": app.program,
"status": app.status.value,
"submitted_at": (
app.submitted_at.isoformat() if app.submitted_at else None
),
"decision": app.decision,
})
admissions_agent = Agent(
name="University Admissions Assistant",
instructions="""You are a university admissions assistant.
Help prospective students understand program requirements,
track their application status, check document completeness,
and meet deadlines. Be encouraging but accurate. Always
provide specific dates and actionable next steps. If a
deadline is approaching within 30 days, flag it urgently.""",
tools=[
get_program_requirements,
check_document_status,
get_application_status,
],
)
result = Runner.run_sync(
admissions_agent,
"What are the requirements for the CS masters program?"
)
print(result.final_output)
A production admissions agent should proactively warn about approaching deadlines.
from datetime import timedelta
def generate_deadline_alerts(days_warning: int = 30) -> list[dict]:
alerts = []
today = date.today()
for app_id, app in APPLICATIONS_DB.items():
program = PROGRAMS_DB.get(app.program)
if not program or app.status == ApplicationStatus.SUBMITTED:
continue
days_left = (program.application_deadline - today).days
if 0 < days_left <= days_warning:
alerts.append({
"applicant_id": app_id,
"applicant_name": app.applicant_name,
"program": program.program_name,
"deadline": program.application_deadline.isoformat(),
"days_remaining": days_left,
"urgency": "critical" if days_left <= 7 else "warning",
})
return sorted(alerts, key=lambda a: a["days_remaining"])
For rolling admissions, set the deadline to the final date the program accepts applications and add a priority deadline field. The agent can explain that applications are reviewed as received and earlier submissions improve chances of acceptance and financial aid availability.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
Yes. Replace the in-memory dictionaries with API calls to your SIS (Banner, PeopleSoft, Slate, etc.). The tool functions become thin wrappers around REST or SOAP endpoints. The agent logic and conversation flow remain identical regardless of the data source.
The agent should never reveal decision rationale or compare applicants. It can report status (under review, decision made) and direct students to their decision letter. Configure the agent instructions to explicitly refuse requests for admission predictions or committee deliberation details.
#AIAgents #EdTech #UniversityAdmissions #Python #Education #AgenticAI #LearnAI #AIEngineering

Written by
Sagar Shankaran· Founder, CallSphere
LinkedInSagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
A how-to for Colombian education and tutoring SMBs to answer parents and students instantly, book trial classes 24/7 in Spanish and English, and grow enrollment with a CallSphere AI agent.
Kenyan clinics and education providers lose patients and students to busy phone lines. Here is how CallSphere AI voice and chat agents book every appointment 24/7 in English and Swahili, DPA-aware.
How Philippine clinics and tutoring centers in Manila, Cebu, and Davao use CallSphere AI voice and chat agents to answer every Taglish enquiry 24/7 and fill their schedules — Data Privacy Act ready.
A how-to guide for Bangladeshi coaching centres, edtech startups, and schools on using a CallSphere AI voice + chat agent to answer every admission enquiry in Bengali and English during peak season.
A step-by-step guide for coaching centres, tutoring services, and edtech brands in Kota, Delhi, and Bengaluru to capture every admission enquiry with CallSphere AI voice + chat agents in Hindi and regional languages.
A founder's guide to the personal AI assistant market: best AI assistant apps, business-grade options, and how CallSphere's voice agent fits in.
© 2026 CallSphere Inc. All rights reserved.
Made within San Francisco