|
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-appmacOS/Linux:
python3 -m venv venv
source venv/bin/activateWindows:
python -m venv venv
.\venv\Scripts\activatepip install -r requirements.txtCreate .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.pyNavigate 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_KEYandRAPIDAPI_KEYto Vercel environment variables - Automatic Deployment: Vercel detects
vercel.jsonand deploys as Python Serverless Function
Note: Any push to
mainbranch triggers automatic redeployment with zero downtime.



