Get direct Buy, Sell, or Hold recommendations backed by real-time data analysisβno hedging, just decisive Wall Street-grade insights. |
Integrated with Yahoo Finance API for up-to-the-minute stock and cryptocurrency quotes with sub-second latency. |
On-demand historical performance charts and technical indicators rendered directly in the chat interface. |
AI-driven risk assessment and investment goal analysis for personalized portfolio recommendations. |
π§ Step-by-Step Setup
git clone https://github.com/your-username/finbee-ai-app.git
cd finbee-ai-app
macOS/Linux:
python3 -m venv venv
source venv/bin/activate
Windows:
python -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txt
Create .env
file:
# API Configuration
GOOGLE_API_KEY="your-actual-google-api-key"
RAPIDAPI_KEY="your-actual-rapidapi-key"
Create run_local.py
:
# run_local.py
from dotenv import load_dotenv
load_dotenv()
from app import app
if __name__ == "__main__":
app.run(debug=True, port=5001)
python run_local.py
Navigate to http://127.0.0.1:5001
- Repository Setup: Push code to GitHub repository
- Vercel Integration: Import repository into Vercel dashboard
- Environment Configuration: Add
GOOGLE_API_KEY
andRAPIDAPI_KEY
to Vercel environment variables - Automatic Deployment: Vercel detects
vercel.json
and deploys as Python Serverless Function
Note: Any push to
main
branch triggers automatic redeployment with zero downtime.