├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── finalmp4.mp4 ├── sample_chat.png ├── sample_tool_use.png └── vectors.png ├── employee_data.csv ├── hr-agent-code-jupyter-notebook.ipynb ├── hr_agent_backend_azure.py ├── hr_agent_backend_local.py ├── hr_agent_frontend.py ├── hr_policy.txt ├── requirements.txt └── store_embeddings_in_pinecone.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/finalmp4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/assets/finalmp4.mp4 -------------------------------------------------------------------------------- /assets/sample_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/assets/sample_chat.png -------------------------------------------------------------------------------- /assets/sample_tool_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/assets/sample_tool_use.png -------------------------------------------------------------------------------- /assets/vectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/assets/vectors.png -------------------------------------------------------------------------------- /employee_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/employee_data.csv -------------------------------------------------------------------------------- /hr-agent-code-jupyter-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/hr-agent-code-jupyter-notebook.ipynb -------------------------------------------------------------------------------- /hr_agent_backend_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/hr_agent_backend_azure.py -------------------------------------------------------------------------------- /hr_agent_backend_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/hr_agent_backend_local.py -------------------------------------------------------------------------------- /hr_agent_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/hr_agent_frontend.py -------------------------------------------------------------------------------- /hr_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/hr_policy.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /store_embeddings_in_pinecone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanogil/autonomous-hr-chatbot/HEAD/store_embeddings_in_pinecone.ipynb --------------------------------------------------------------------------------