Get MultiAgent up and running in 5 minutes!
- Go to Google AI Studio
- Click "Create API Key"
- Copy your API key
-
Copy
.env.exampleto.env:copy .env.example .env
-
Edit
.envand add your API key:SECRET_KEY=your-secret-key-change-this-in-production DATABASE_URL=sqlite:///financial_coach.db GEMINI_API_KEY=your-gemini-api-key-here
Simply double-click start.bat - it will:
- Create virtual environment
- Install dependencies
- Initialize database
- Start the server
# Create virtual environment
python -m venv venv
# Activate it
venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Initialize database
python -c "from app import app, db; app.app_context().push(); db.create_all()"
# Run the app
python app.pyOpen your browser and go to: http://localhost:5000
- Click "Sign up"
- Enter your details
- Start using MultiAgent!
- Go to Financial section
- Fill in the transaction form
- Click "Add Transaction"
- In the Financial section
- Type your question in the AI Advisor box
- Click "Get AI Advice"
- Go to Tasks section
- Fill in task details
- Select an agent
- Click "Create Task"
- Go to Dashboard
- See your financial overview
- View charts and insights
- Add multiple transactions to see better insights
- Ask specific questions to the AI advisor
- Check the Dashboard regularly for updates
- Try different agents for various tasks
pip install -r requirements.txtpython -c "from app import app, db; app.app_context().push(); db.create_all()"Edit app.py and change the port:
app.run(debug=True, port=5001) # Change 5000 to 5001- Check your API key in
.env - Verify you have API quota remaining
- Check your internet connection
- Read the full README.md
- Check the API documentation
- Explore agent capabilities
Start managing your finances with AI-powered insights!
Need help? Create an issue on GitHub or check the documentation.