Skip to main content

AgentWall Python Client SDK

Python client for the Vexa AgentWall AI Security Gateway & Firewall.

Routes AI agent tool calls and LLM egress through the out-of-process AgentWall proxy, enforcing default-deny policies, DLP secret redaction, prompt injection scanning, spend caps, and Human-in-the-Loop approvals without running governance logic in-process.

Installation

pip install vexaagentwall

Quick Start

Make sure agentwall is running locally (agentwall dev or via Docker / Kubernetes):

from agentwall import AgentWallClient, AgentWallDenied, AgentWallApprovalPending

# Auto-discovers local proxy at http://127.0.0.1:8080 or AGENTWALL_PROXY_URL env var
client = AgentWallClient()

# Method 1: Decorator for transparent governance
@client.governed
def read_project_file(path: str) -> str:
    with open(path, "r") as f:
        return f.read()

# Safe call
try:
    content = read_project_file("/home/user/project/src/main.rs")
    print(content)
except AgentWallDenied as e:
    print(f"Blocked by policy: {e.rule_name}{e.reason}")
except AgentWallApprovalPending as e:
    print(f"Action requires human approval: {e.approval_url}")

# Method 2: Direct tool call routing
result = client.call_tool("read_file", {"path": "/home/user/project/README.md"})
print(result.data)

Async Support

import asyncio
from agentwall import AsyncAgentWallClient

async def main():
    client = AsyncAgentWallClient()
    
    @client.governed
    async def async_fetch(url: str):
        # Your tool logic
        return "data"

    res = await async_fetch("https://api.internal.corp/data")
    print(res)

asyncio.run(main())

LangChain Integration

from langchain.tools import tool
from agentwall import AgentWallClient

client = AgentWallClient()

@tool
@client.governed
def query_customer_db(query: str) -> str:
    """Run read-only database query."""
    return db.execute(query)

License

MIT License.

Download files

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

Source Distribution

vexaagentwall-1.0.27.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

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

vexaagentwall-1.0.27-py3-none-any.whl (2.2 kB view details)

Uploaded Python 3

File details

Details for the file vexaagentwall-1.0.27.tar.gz.

File metadata

  • Download URL: vexaagentwall-1.0.27.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vexaagentwall-1.0.27.tar.gz
Algorithm Hash digest
SHA256 83e6c9ee7dc28f34799ed7bec628fd78a34bf364ef657e85cdc93d55877b4fc4
MD5 797e529f839f6e7e9ddb6e5c91dec46b
BLAKE2b-256 10002d5767a615c8a6e43c39f90c89660ff57582e7430d38360884898c8130f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for vexaagentwall-1.0.27.tar.gz:

Publisher: release.yml on noviqtechnologies/agentwall

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vexaagentwall-1.0.27-py3-none-any.whl.

File metadata

  • Download URL: vexaagentwall-1.0.27-py3-none-any.whl
  • Upload date:
  • Size: 2.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vexaagentwall-1.0.27-py3-none-any.whl
Algorithm Hash digest
SHA256 af939dee9c1e454f5bbc4cc8caa94365ecb60de19587a8b0fc38bb7070c20246
MD5 c8b4e7bf7deb701f714a8dbd6c042a08
BLAKE2b-256 72929eb9c885174a12f6f0e4401f1c5b9fb51a39d289c12e78243fd9ec3bb760

See more details on using hashes here.

Provenance

The following attestation bundles were made for vexaagentwall-1.0.27-py3-none-any.whl:

Publisher: release.yml on noviqtechnologies/agentwall

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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