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.9.1.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.9.1-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: abagentsdk-0.9.1.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.9.1.tar.gz
Algorithm Hash digest
SHA256 81dee991fd8d29f747f8165642a40069e951444f56ed72857332643f3c7b25aa
MD5 e40cc204e0633ec1e67747c3c427a9c0
BLAKE2b-256 8e0bac11565c1ead193242db57e9512ff7a2b2e37665dfb02aaec29e487bdabe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abagentsdk-0.9.1-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.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c308325afa2f7f41ecc45dff2db7b32db8a11a7e1cdd8f61000a32374d11134c
MD5 e170fe357b42d6f0c938b07c95890ce8
BLAKE2b-256 39a77c5f5207aeb4c7bec5684bec552d3fa45251d80e5c2afab72cfa47a57788

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