Getting Started¶
New to AI engineering, or new to Bee? This short section gets you from zero to a working LLM call and points you at the right learning path.
The 3-step start¶
flowchart LR
A[1. Set up<br/>your environment] --> B[2. Make your<br/>first LLM call] --> C[3. Follow a<br/>learning path]
-
1. Setup & Prerequisites
Python, a virtual environment, and an API key. Five minutes.
-
2. Your First LLM Call
Send a prompt, get a response, understand every line.
-
3. Pick a Path
A sequence that takes you from fundamentals to shipping.
What you need¶
- Basic Python โ you can read and write functions, use
pip/uv, and run scripts. - A terminal โ macOS, Linux, or Windows (WSL recommended on Windows).
- An API key from an LLM provider. The examples default to Anthropic, but the concepts apply to any provider.
No GPU required
Almost everything in Bee uses hosted APIs โ no local GPU needed. The few sections that use local models say so explicitly and offer CPU-friendly options.
What you don't need¶
- โ A machine learning degree
- โ Deep math (we build intuition first; math is optional depth)
- โ Expensive hardware
Ready? Set up your environment โ