ABZ AgentABZ AgentDocs← Site
Docs/Getting Started/Installation

Installation

Install the SDK and configure your API keys.

Install ABZ Agent SDK#

Install the SDK using pip.

terminal
pip install abz-agents

Once the installation is complete, initialize your project.

terminal
abz-agents setup

This command automatically creates the required project files.

Example project structure:

Project Structure
project/

├── .env
├── main.py

.env#

The .env file is used to store your API keys.

Example:

.env
GEMINI_API_KEY=your_api_key_here

or

.env
GROQ_API_KEY=your_api_key_here

main.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.py

Why use abz-agents setup?#

Instead of manually creating project files, the setup command:

  • Automatically creates a .env file.
  • Generates a starter Python example.
  • Saves time during project setup.
  • Gets you coding in seconds.

Next Step#

Continue to the Quick Start.

← Previous
Introduction
Next →
Quickstart