Installation
Install the SDK and configure your API keys.
Install ABZ Agent SDK#
Install the SDK using pip.
terminal
pip install abagentsdkOnce the installation is complete, initialize your project.
terminal
abagentsdk setupThis command automatically creates the required project files.
Example project structure:
Project Structure
project/
├── .env
├── main.py.env#
The generated .env file is used to store your API keys.
Example:
.env
GEMINI_API_KEY=your_api_key_hereor
.env
GROQ_API_KEY=your_api_key_heremain.py#
The setup command also creates a starter main.py file containing working example code so you can start building immediately.
After adding your API key, simply run:
terminal
python main.pyWhy use abagentsdk setup?#
Instead of manually creating project files, the setup command:
- Automatically creates a
.envfile. - Generates a starter Python example.
- Saves time during project setup.
- Gets you coding in seconds.
Next Step#
Continue to Quick Start.