================================
🚀 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
Release files for abagentsdk 0.9.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| abagentsdk-0.9.2.tar.gz | 22.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| abagentsdk-0.9.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 51.4 kB
Release files / abagentsdk-0.9.2.tar.gz
| Download URL | abagentsdk-0.9.2.tar.gz |
|---|---|
| Size | 22.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
98aa993212dc9a9dae71a82f0f9f9600ad53fbc142b06555b85d9f41c2d7fbc7
|
|
BLAKE2b-256 checksum How to use checksums |
14a67a0a0c2b1eec83a4094927b4fe527598212a0945d6e09efe660ffeb92344
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|
Release files / abagentsdk-0.9.2-py3-none-any.whl
| Download URL | abagentsdk-0.9.2-py3-none-any.whl |
|---|---|
| Size | 29.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
23fd0e4241c708e30b3898325d7fb52eb49639a4e0d976d4fa237e693ad7f2fb
|
|
BLAKE2b-256 checksum How to use checksums |
48eddf0c8fcffb62ab3aeea3f3ba8c85b58af3a5b107b5cbf09dbeaad2c0d62b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|