Loading AGEI...
Official Python client library for AGEI integration
Latest stable version: 2.0.0
Recommended for most users
pip install agei-sdkpython -c "from agei_sdk import AGEIClient; print('SDK installed successfully!')"Set up your credentials
Loading...AGEI_BASE_URL=https://your-instance.com
AGEI_API_KEY=your_api_key_here
AGEI_VERIFY_SSL=truefrom agei_sdk import AGEIClient
# Load from environment
client = AGEIClient.from_env()
# Or configure directly
client = AGEIClient(
base_url="https://your-instance.com",
api_key="your_api_key_here"
)
# Test connection
result = client.health_check()
print("✓ Connected to AGEI")