This project implements an AI-powered task scheduling agent that assigns tasks to employees based on factors like skill matching, current workload, fatigue, and availability. The system includes an interactive user interface built with Streamlit and can intelligently match tasks using deep learning techniques and natural language processing.
- ๐ง AI-based Task Assignment using DQN (Deep Q-Learning).
- ๐ฌ NLP Parsing of Task Descriptions to extract requirements.
- ๐ท Employee Profiling based on skillsets, availability, and fatigue.
- ๐ Real-time Visualization of assignments with Streamlit.
- โ๏ธ Can be deployed via Colab + ngrok for quick demos.
- Open the notebook
AI_Scheduler_Agent.ipynb
in Google Colab. - Run the cells to:
- Install dependencies
- Launch the Streamlit server
- Tunnel the port using
pyngrok
- Access the public URL generated to use the app.
Use the app.py file to run:
pip install -r requirements.txt
python -m spacy download en_core_web_lg
streamlit run app.py