Skip to main content
An Interviewer is the AI persona that runs a Round. It tells the AI who to be and how to grade — the personality and the report card, bundled together. You make an Interviewer once, then reuse it across many Rounds and Roles. (For example, one “ITOM Specialist” Interviewer can run the ITOM round in several different Roles.)

What it controls

Who it is

The name and personality the candidate talks to.

How it talks

Friendly or strict, easy or hard, deep follow-ups or light ones.

How it scores

The list of things it grades, and how much each one counts.

Every field, in plain words

name
string
required
A label for you, like "Senior Backend Interviewer".
persona
string
required
The first thing the AI says about itself, like "Hi, I'm Alex, a senior engineer." This sets the mood.
useCase
hiring | admissions | training | custom_api
required
Pick why you’re interviewing. This changes the words in the final verdict (for example hire vs ready to practice more).
evaluationDimensions
array
required
The things to grade. Each one is { name, description, weight }. The weights must add up to 100. Example: System Design 50, Coding 30, Communication 20.
interaction
object
How the chat feels:
  • tone — friendly, professional, strict, or challenging
  • style — structured, conversational, or adaptive
  • difficulty — easy, medium, hard, or adaptive
  • probingDepth — low, medium, or high (how much it digs in)
scoring
object
How numbers are made: scale (0-10, 0-5, or 0-100) and scoringMethod (weighted_average or rule_based).
context
object
Extra background so the AI sounds like it belongs: organizationContext, domainContext, scenarioContext.
output
object
What ends up in the report: includeTranscript, includeScoreBreakdown, includeRecommendation, includeImprovementFeedback. All on by default.

Make one, step by step

You can do this two ways — in the dashboard (no code) or over the API. Both create the exact same thing.
1

Open Interviewers

In the team dashboard, click Interviewers in the left sidebar.
2

Start a new one

Click New (or Create Interviewer).
3

Name it and give it a personality

Fill in the Name and the Persona (one sentence on how the AI introduces itself).
4

Pick the use case

Choose the Use case (Hiring, Admissions, Training…).
5

Add what to grade

Add 2–4 evaluation dimensions and set each one’s weight so they add up to 100. Set the tone and difficulty.
6

Save

Click Save. Your Interviewer now appears in the list, ready to attach to a Round.

A filled-in example (no code)

Not technical? Here’s exactly what to type into each dashboard field to build a simple “Friendly Screener” — a warm first-round interviewer you can reuse for almost any job.
FieldWhat to typeWhy
NameFriendly ScreenerJust a label for your list — candidates never see it.
PersonaHi, I'm Riya. I'll ask a few quick questions about your background.The AI’s opening line. Keep it to one friendly sentence.
Use caseHiringSets the verdict wording (hire / no-hire).
Dimension 1Communication — weight 40How clearly they explain themselves.
Dimension 2Motivation — weight 30Why they want the role.
Dimension 3Relevant experience — weight 30Do they have the basics?
ToneFriendlyWarm, not intimidating.
DifficultyEasyIt’s a first-round screen, not a deep-dive.
The three weights add up to 100 — that’s the only rule. Click Save, and your Friendly Screener is ready to drop into the first Round of any Role.
Reuse beats rebuilding. This one Interviewer can run the opening Round of your engineering Role, your sales Role, and your support Role — build it once.

Examples for each use case

Strict and skill-focused.
{
  "name": "Backend Hiring Agent",
  "persona": "Alex, a staff engineer.",
  "useCase": "hiring",
  "evaluationDimensions": [
    { "name": "System Design", "description": "Scalable design", "weight": 50 },
    { "name": "Coding",        "description": "Correct & clean", "weight": 30 },
    { "name": "Communication", "description": "Clear trade-offs", "weight": 20 }
  ],
  "interaction": { "tone": "professional", "difficulty": "hard" }
}
Stuck on weights? Start with one big dimension (60) and one small (40), then adjust after a few interviews.

Next

Roles

Put your Interviewer to work inside a Role.

Create an Interviewer (API)

The full endpoint reference.
Last modified on June 30, 2026