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.0.tar.gz (5.2 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.0-py3-none-any.whl (2.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: vexaagentwall-1.0.0.tar.gz
  • Upload date:
  • Size: 5.2 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.0.tar.gz
Algorithm Hash digest
SHA256 b7538bf3d84910973b4ae148538c81d4a963a7bfc502eaebea160548319d8eca
MD5 51481eff0f24ef5d88ae75b0d5b7efe7
BLAKE2b-256 94c14508beff1fcf91d12c9650cec0629f11f3a3c682ddfa139ab32cd0721ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vexaagentwall-1.0.0.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.0-py3-none-any.whl.

File metadata

  • Download URL: vexaagentwall-1.0.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ed255d48fd54f09e7dac7b1148affb5d589ed00135a6f193a43c73cb57d0f072
MD5 a4253f3500b253c891d29d3a382fad0a
BLAKE2b-256 09e1b1a6264782c1a4e563048677329deae45c32cad290a3fb95254afbc1b1c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for vexaagentwall-1.0.0-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