Skip to main content

The fastest way to build AI agents using Google Gemini & Groq

Project description

================================

🚀 ABZ Agent SDK Quick Start Guide

================================

1️⃣ Install ABZ Agent SDK

pip install abagentsdk

or

uv add abagentsdk

2️⃣ Create a .env file and add your keys

echo "GEMINI_API_KEY=your_gemini_key_here" >> .env echo "GROQ_API_KEY=your_groq_key_here" >> .env

3️⃣ Create a new Python file (app.py)

------------------------------------

from dotenv import load_dotenv load_dotenv() import os from abagentsdk import Agent, Memory

Load API keys

GEMINI_API_KEY = os.getenv("GEMINI_API_KEY") GROQ_API_kEY = os.getenv("GROQ_API_KEY")

Create an Agent

agent = Agent( name="Assistant Agent", instructions="You are a helpful assistant.", model="qwen/qwen3-32b", memory=Memory(), )

Run the Agent in a chat loop

while True: user_input = input("You: ") if user_input.lower() in ["exit", "quit"]: break response = agent.run(user_input) print("Agent:", response.content)

4️⃣ Run your agent

python app.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

abagentsdk-0.2.0.tar.gz (22.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

abagentsdk-0.2.0-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file abagentsdk-0.2.0.tar.gz.

File metadata

  • Download URL: abagentsdk-0.2.0.tar.gz
  • Upload date:
  • Size: 22.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for abagentsdk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b59a5916ce46f191b913433637e0a58f278fb7efef7c18debbb81812ac311197
MD5 6cc0e8688e9053f946d13ec2d6685e46
BLAKE2b-256 5b9bf5420a98e4e7c0a03bbf599475c2f25ce737e487b4b254e95b57e60127f2

See more details on using hashes here.

File details

Details for the file abagentsdk-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: abagentsdk-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for abagentsdk-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a270d8b2c2a7ebd0dfbcf9b65eb1391f0cead970688e7fb5fab176b779c644f7
MD5 b52c9ce657354f116f8ef27cf6653c1d
BLAKE2b-256 d9af836d59a179b518d6df5a7e70ce71adaca4726e3d9cf9123f61f02c032095

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page