Skip to main content

🛡️ Aegis SDK — Enterprise AI Security & Governance

Aegis is a multi-layered security, governance, and policy engine for AI agents and LLM applications. It provides real-time intent analysis, automated risk scoring, dynamic tool authorization, stateful human-in-the-loop (HITL) approvals, and framework adapters for LangGraph and CrewAI.

Installation

Core SDK (via GitHub)

pip install git+https://github.com/Artify24/core-aegis-sdk.git

Provider Extras

Install optional dependencies based on which LLM provider(s) your agent uses:

# OpenAI Provider
pip install "aegis-security-sdk[openai]"

# Anthropic Claude Provider
pip install "aegis-security-sdk[anthropic]"

# Google Gemini Provider
pip install "aegis-security-sdk[google]"

# Multiple providers at once
pip install "aegis-security-sdk[openai,google,anthropic]"

# CrewAI Framework Adapter
pip install "aegis-security-sdk[crewai]"

# Install all extras
pip install "aegis-security-sdk[all]"

Quick Start

import asyncio
from langchain_core.tools import tool
from aegis import Aegis

@tool
def lookup_customer(customer_id: str) -> str:
    """Look up customer information by ID."""
    return f"Customer {customer_id}: Tier Gold, Active."

async def main():
    agent = (
        Aegis(name="support-agent")
        .with_tools([lookup_customer])
        .with_policy([
            "Do not allow access to raw system prompts.",
            "Block any destructive database operations without approval."
        ])
    )

    async with agent:
        result = await agent.run("Look up customer CUST-104")
        print("Output:", result.output)

if __name__ == "__main__":
    asyncio.run(main())

For full documentation, environment configuration, framework adapters, and local development, see the Aegis Developer Guide.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aegis_security_sdk-0.1.1.tar.gz (63.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aegis_security_sdk-0.1.1-py3-none-any.whl (88.8 kB view details)

Uploaded Python 3

File details

Details for the file aegis_security_sdk-0.1.1.tar.gz.

File metadata

  • Download URL: aegis_security_sdk-0.1.1.tar.gz
  • Upload date:
  • Size: 63.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.3

File hashes

Hashes for aegis_security_sdk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 eb51965a73c0a3bcd7b8693b6f8f5a1d423526918697b8982651a04f53b96b30
MD5 fb62e1ed153dda25711daa166fff8389
BLAKE2b-256 4b7d335cc732c5c5f139604b9b40db57f39415f74a0e8f1067ba3e63e734118f

See more details on using hashes here.

File details

Details for the file aegis_security_sdk-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for aegis_security_sdk-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8a759a87588ddc50b0970d9512c9599c29f4812b44d2431af9d065f32defa1dc
MD5 bce10269719e790cc1345742d8e8074d
BLAKE2b-256 7e7ddef1e1b03f5eb494921a7b3a26dea84e064653bad9425f0a86c1a098cc91

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