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

Uploaded Python 3

File details

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

File metadata

  • Download URL: abagentsdk-0.9.2.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.2.tar.gz
Algorithm Hash digest
SHA256 98aa993212dc9a9dae71a82f0f9f9600ad53fbc142b06555b85d9f41c2d7fbc7
MD5 4a9adfe9acba2b156a7cfc3a1557e9a6
BLAKE2b-256 14a67a0a0c2b1eec83a4094927b4fe527598212a0945d6e09efe660ffeb92344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abagentsdk-0.9.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 23fd0e4241c708e30b3898325d7fb52eb49639a4e0d976d4fa237e693ad7f2fb
MD5 d68357f587f40c7d18798dd123f29658
BLAKE2b-256 48eddf0c8fcffb62ab3aeea3f3ba8c85b58af3a5b107b5cbf09dbeaad2c0d62b

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