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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file abagentsdk-0.9.0.tar.gz.
File metadata
- Download URL: abagentsdk-0.9.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66596728db5e964acdbf45905641087d26261659c3e1d1cfda93280395d3e486
|
|
| MD5 |
a135d8e09f38653445cabb8478a3fc4c
|
|
| BLAKE2b-256 |
a2f2a18cd9af450e488bb8444ea9b25b7309ef7f82e5e79d884b92c196b507a0
|
File details
Details for the file abagentsdk-0.9.0-py3-none-any.whl.
File metadata
- Download URL: abagentsdk-0.9.0-py3-none-any.whl
- Upload date:
- Size: 29.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0ec3903b758cf3854ed3a92ac5fad0bcfcd6a0b85af2098ff6c6ef37aeb517f
|
|
| MD5 |
b9f592bb4eb1726582eb696aad17087b
|
|
| BLAKE2b-256 |
6245945c8c5b3fc6f224cdd87afc073a48caf8d895c271dd3a665f557c3a2e0c
|