@prthm
on
Conlatus : AI screening Interview
Conlatus : AI-powered screening interviews
I built Conlatus, an AI-powered screening interview system designed to automate the repetitive first stage of candidate screening.
The Idea is :
Create interview -> Candidate enters -> AI conducts interview -> Responses are processed -> Recruiter reviews results.
The challenge ?
The hardest part wasn’t simply connecting an AI API. It was turning an LLM into an actual interview workflow.
I had to figure out how to manage interview state, connect the frontend and backend, process candidate responses, and structure the system so it could grow beyond a simple chatbot.
The stuff that I’m proud at…
It has a working backend, frontend interfaces, AI integration, environment configuration, documentation, and a reproducible local setup.
Test it..
You’ll need Python and a Groq API key (LLM Provider).
git clone https://github.com/conlatus/conlatus.git
cd conlatus
python -m venv .venv
# Windows
.venv/Scripts/activate
# Linux / MacOS
source .venv/bin/activate
pip install -r requirements.txt
# Create .env from .env.example
cp .env .env.example
# Update your GROQ API : GROQ_API_KEY=_groq_api_key
# Start the server
uvicorn backend.main:app --reload
The app will be runnning on http://localhost:8000/.
And access admin dashboard on http://localhost:8000/admin/
note: Conlatus was mostly developer with the help of AI coding IDEs, especially Google Antigravity. I used it extensively for implementation, debugging, refactoring, architecture exploration and UI development.
What I did. Is that I directed the development process, made architectural decisions, reviewed the generated code, tested the application, and iterated on implementation.
I’ve actually created a user friendly website. You can find it at : https://conlatus.github.io/
- 2 devlogs
- 2h