Registry / ai-ml / aigie
library0.2.43pypypi✓ verified 84d ago

Enterprise-grade AI agent reliability monitoring and autonomous remediation. The aigie package (also known as Kytte SDK) provides observability, alerting, and self-healing for AI agents in production. Current version is 0.2.43, actively maintained with weekly releases.

pip install aigie
INSTALL
IMPORT
SIG · AIGIE
A
aigie
ai-mlpythonv0.2.43
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

aigie.init
import aigie
from aigie import init
aigie.init is a method on the module, not a direct import. Correct usage: aigie.init(api_key=...)

Initialize the SDK with your API key, then use the @aigie.monitor decorator to track agent reliability.

import aigie import os aigie.init( api_key=os.environ.get('AIGIE_API_KEY', 'your-api-key') ) # After init, decorate your agent function @aigie.monitor(agent_id='my-agent') def my_agent(query): return f"Response to: {query}" response = my_agent("Hello") print(response)
Debug
Known issues
breakingIn version 0.2.x, the init signature changed from old positional args to keyword-only with api_key required.
fix
Use keyword argument: aigie.init(api_key='...')
affects: >=0.2.0
gotchaThe @aigie.monitor decorator must come after aigie.init() or it will silently fail to register telemetry.
fix
Always call aigie.init() before defining or calling any monitored function.
affects: all
deprecatedThe agent_id parameter in @monitor is being renamed to agent_name in the next major release (0.3.0).
fix
Start using agent_name='...' to future-proof your code.
affects: 0.2.x
Errors
Common errors & fixes
AttributeError: module 'aigie' has no attribute 'init'
Wrong import: from aigie import init not supported.
fix
Use import aigie then call aigie.init()
aigie.exceptions.InitializationError: No API key provided.
API key missing or not set via environment variable AIGIE_API_KEY.
fix
Set environment variable or pass api_key kwarg: aigie.init(api_key='your-key')
TypeError: init() takes 1 positional argument but 2 were given
Calling init with positional argument instead of keyword argument (changed in 0.2.0).
fix
Use aigie.init(api_key='...')
Upgrade
Version history
0.2.43latest on PyPI · released Jun 3, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
51 hits · last 30 days
node
46
OpenAI (training)
1
Resources
aigie — pip install aigie · libregistry