An AI-powered system that simulates a startup team by coordinating specialized agents to collaboratively analyze startup ideas.
python -m venv venvWindows:
venv\Scripts\activatemacOS/Linux:
source venv/bin/activatepip install -r requirements.txtCopy .env.example to .env and add your OpenAI API key:
copy .env.example .envEdit .env and replace your_openai_api_key_here with your actual OpenAI API key.
.
├── src/ # Source code
├── tests/ # Test suite
│ ├── unit/ # Unit tests
│ ├── property/ # Property-based tests
│ └── integration/ # Integration tests
├── config/ # Configuration files
├── requirements.txt # Python dependencies
└── .env.example # Environment variable template
pytestMIT