This project demonstrates a functional Agentic AI designed to reduce HR administrative overhead. It utilizes a Retrieval-Augmented Generation (RAG) architecture to allow an LLM to "read" internal company policies and execute basic HR tasks autonomously.
The agent follows a Reasoning + Acting (ReAct) logic:
- User Query: "How many vacation days do I have left?"
- Reasoning: The LLM identifies it needs the
check_vacation_balancetool. - Action: Python executes the script to query the database.
- Observation: The script returns "12 days."
- Response: The LLM generates a natural language answer for the employee.