Debt Slayer is an AI-powered debt management advisor designed to help users create a consolidated debt report and develop a personalized debt management strategy. By analyzing the user's financial profile, Debt Slayer provides actionable insights and a tailored repayment plan. The application leverages a Retrieval-Augmented Generation (RAG) pipeline powered by the Deepseek R1 reasoning model, to offer users the most relevant and effective debt management strategies.
DEMO VIDEO: https://youtu.be/q4Nu5Xq1qJs
Conda is an open-source package management system and environment management system.
-
Create a new conda environment:
conda create -n myenv python=3.9 -
Activate the environment:
conda activate myenv -
Install dependencies from
requirements.txt(if available):pip install -r requirements.txt
Pip is the standard package installer for Python.
-
Install virtualenv if you don't have it:
pip install virtualenv -
Create a virtual environment:
virtualenv venv -
Activate the virtual environment:
- On Windows:
venv\Scripts\activate - On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Install dependencies from
requirements.txt(if available):pip install -r requirements.txt
```
streamlit run frontend.py
```
Ensure that all dependencies are installed before running the scripts.
If you encounter any issues, feel free to reach out or check the documentation for the tools mentioned above.
