AI-powered chatbot for financial education in multiple languages.
git clone https://github.com/iceman2100/finlit-ai.git cd finlit-ai
text
python -m venv backend/venv
text
Windows: backend\venv\Scripts\activate
text
pip install -r requirements.txt
text
Place your datasets in the datasets/ folder.
python training/train_model.py
text
cd backend python -m uvicorn app.main:app --reload
text
cd frontend npm install npm run dev
text
backend/- FastAPI backend serverfrontend/- Next.js frontend applicationtraining/- Model training scriptsdatasets/- Training data (not included)models/- Trained models (generate locally)
- Virtual environment is NOT included in repository
- Models and datasets are NOT included (too large for Git)
- Train models locally after setup
- Requires Python 3.8+ and Node.js
Add this section after "4. Install Dependencies":
text
Create a .env file in the project root:
GROQ_API_KEY=your_groq_api_key_here
text Get your API key from https://console.groq.com Save and commit:
text git add README.md git commit -m "Update README with environment setup instructions" git push origin main
MIT License