

I’ve always been frustrated with recruiting. There I am, reviewing the 87th resume of the day and I realize that these people have simply been reduced to a set of characteristics of “communicative,” “stress tolerant,” or “has happened to have experience working in dynamic teams.” Then three days later, the candidate who I would have deemed a perfect fit is now happily building new relationships with a competitor, and I didn’t act fast enough to parallel process those applications.
This is the point where artificial intelligence recruiting magic begins; no, a human resource (HR) professional will not be replaced by a robot, but the grunt work of all the mechanical tasks gets done by a machine. I entered the space with my first software product for crypto projects launched in 2023—the day the market dropped by 40% in one night. Do you know what made us successful? Speed. While other companies sat around waiting to set up their systems, I was able to aggregate metrics, analyze sentiment on Telegram and track the activity of large players in 30 seconds or less. As a result, clients were able to generate a profit, while the rest of the market asked: ”What are we paying for?”
The same logic applies to recruiting: just as we used on-chain metrics to evaluate performance, here we use resumes. The essence remains the same, the automation of HR and the reduction of redundant loads means that HR can now spend their time communicating directly with candidates to determine cultural fit with the company. As opposed to being a soul-destroying filter that reduces hundreds of resumes to find keywords.
An AI Recruiter is a neural network (usually built on GPT) that automates the recruitment process, from resume parsing to initial interviewing through chat. AI differs from a standard ATS (Applicant Tracking System) in that it actually analyzes text: it matches skill sets with job openings, communicates with candidates and asks follow-up questions.

What an AI Recruiter Can Do:
From my own experience: In our ASCN.AI project, we created a GPT-4 Based Skills Test Bot on Telegram to assist in finding blockchain developers.
Companies can use NLP (Natural Language Processing) and GPT (Generative Pretrained Transformer) to attract candidates more effectively. Recruiters could use the technology to accomplish three primary goals:
Research has shown that organizations utilizing NLP have reported an average time saving of 35% in filling positions, and have seen their retention rates increase by 12% due to better and more objective hiring.
| Parameter | ATS (no AI) | GPT for recruitment |
|---|---|---|
| Resume Screening | Uses only keyword matching and seniority filters | Uses contextual analysis and semantic matching |
| Interview Process | 30 - 60 minutes | 5 - 10 minutes |
| Personalization | Fulfillment emails | Automatically revised applicant questions |
| Time to Screen One Resume | 2 - 5 days | 10 - 30 seconds |
An implementation example for 2025 in an e-commerce company is that a chatbot built on the ASCN.AI platform was developed in 7 days to process 450 applicants and create 310 candidate records for the HR department. The end result was that hiring 50 candidates took 10 days, rather than the usual 3 weeks.
Machine Learning (ML) is a subset of AI that allows a computer application to learn from past instances and build predictive models to enable the application to operate autonomously without explicit programming. As applied to recruiting, this would typically include:
The complete NLP software suite consists of:
When applied to recruiting, this enables job openings and resumes to be structured similarly, so job descriptions and candidate profiles can be compared with cosine similarity, as well as generate unique lack of opportunities letters and automated responses.
The tech stack utilized might include spaCy, Sentence Transformers, GPT-4, BERT.
In general, the following is a simple representation of how you’d build a basic HR chatbot:
In this instance, here is an example of how you’d build a simple Telegram bot:
[Telegram API] → [Webhook] → [GPT API: questions] → [Answer analysis and saving] → [Upload to Google Sheets]
Here is an example of a no-code workflow in ASCN.AI:
Telegram Trigger → AI Agent (data extraction) → Logic (filtering) → HTTP Request to ATS → HR Notification → Candidate Response
The functions of a chatbot could include: to collect simple information (name, contact details, and city), to measure hard skills and soft skills, to assess motivation and expectations, and schedule a job interview in a calendar.
An ATS (Applicant Tracking System) is an automated database that provides CRM functions for recruitment (Greenhouse, Lever, BambooHR, etc.). Integration with an AI recruiter allows you to create candidate cards automatically, update candidate status, manage the applicant pipeline, and obtain reports through analytics.
The key advantages of integrating these systems include:
Example Workflow of ASCN.AI:
Trigger: New message in Telegram
↓
AI Agent: Data extraction
↓
Logic: Filtering by experience and skills
↓
HTTP Request: Sending data to ATS (JSON)
↓
HR Notification (Telegram)
↓
Response to Candidate
The first step is to determine the requirements of the system. Without clear requirements or criteria, no matter how well the system was designed, it will not be utilized. A recruiter must determine:
Common Missteps to Avoid:
Example Specification: Automating the screening of a Python developer with at least 1 year experience, an understanding of Django/FastAPI, no less than B1 level English, and a GitHub portfolio. Integrate into Notion and reduce the HR staffing hours needed to process applications from 12 to 3 hours per week.
Most common available models:
Training Methodologies:
An example of a simple prompt would be:
You are an HR bot for a Python Developer position. Ask 4 questions: experience, frameworks, English, and portfolio.
Justify your answers and evaluate the candidate's resume:
Experience < 1 year - Not suitable;
No portfolio - Verification needed;
English less than two sentences - Not suitable;
Otherwise good - Proceed to interview.
Tone — Friendly-professional.
The key points to integrate using your chatbots would include:
An example of an added value tool is ASCN.AI (no-code tool) that allows you to create a pipeline (workflow) consisting of a trigger in Telegram → AI Agent will filter results by sending HTTP requests back to ATS → Notify HR of outcome via HR Notifications → The candidate receives responses from the AI agent. It is all visual and done through a no-code platform.
Common Problems and Solutions:
Using HR Bots integrated into messenger services will typically increase the application rate by 40%. The primary reason is that people prefer messaging apps over filling out forms on websites.
When you launch your AI Bot, you need to understand that this is only the beginning of your journey. Improvement is then realized through iterative processes.
Testing Criteria:
Optimization:
Case Study ASCN.AI: In one week after changing the prompt to incorporate adjacent experience, precision increased from 40% to 72%. This is all due to one simple change!
Quantitative:
Qualitative:
Examples:
To ensure that Explainable AI (XAI) and human-in-the-loop systems are used to minimize errors and maintain trust in an AI Hiring Solution (AIHS), you will need to implement specific validation methods. For example, after Amazon discovered that its AI recruiting tool was unfairly biased against women due to its training data, the company discontinued that project. These types of anecdotes provide insight into the risks of using automated tools for recruiting purposes.
Ways to minimize risk and reduce error:
It is not necessary if you use no-code platforms like ASCN.AI. However, additional customization beyond basic functions may require familiarity with the Python language, as well as interacting with application programming interfaces (APIs).
It can take anywhere from 2 hours (to create a simple Telegram bot with 3 questions), to 2 days (to fully integrate the bot with an applicant tracking system and develop the business logic).
Use GPT for small and medium-sized enterprises; or use the Open-source option for large enterprise applications where privacy will be of utmost importance. I suggest compromising on using GPT-4 Turbo, as it will balance cost with quality.
Resume parsing is accomplished through the use of specialized software and/or APIs which allows for the conversion of resumes into digital formats (.pdf/.doc). Candidates may also submit their resumes in .txt format.
Some examples of protecting candidate data include the use of SSL encryption; limitations of access; performing regular backups; and deleting candidate data upon request in compliance with GDPR guidelines.
You should work to improve the prompt by adding examples of candidate responses and decreasing the temperature at which the bot generates responses. Implement human-in-the-loop verification to verify the correctness of the bot's evaluation.
Yes! You can use RPA (Robotic Process Automation) or connect with intermediate services (e.g., Google Sheets, Airtable) to store the desired information.
68% of candidates have a positive view of an AI interview when they are given transparent explanations and relevant questions.
ROI = (time saved by HR staff) + (reduced cost-per-hire) + (improvement in offer-acceptance quality).
If HR does not support automation, you should conduct a pilot project; involve HR in the initiative; demonstrate results to HR; and give HR time to adapt to the change.
The information in this article is generalized in nature and does not substitute for investment, legal, or security advice. A person should utilize AI assistants with care and have a clear understanding of the functionality offered by the individual platforms.