A local detection engine for the Guard Python client, integrating visual safety filters into your applications
🛡️ Multi-Layered Content Moderation: Automatically detects AI-generated, violent, and explicit content in images and videos.
⚡ Fast Local Inference: Runs a lightweight computer vision model entirely on-device using ONNX Runtime. It operates with zero network latency and completely avoids pulling in massive deep-learning dependencies like PyTorch.
🏢 Seamless Production Testing: Designed to perfectly mirror the cloud API's data structures. This allows enterprise teams to easily build and test their integration logic locally before routing production traffic to the cloud API.
🧑💻 Instant Open-Source Baseline: Provides open-source developers and hobbyists with a free, immediately usable baseline classifier. Get a foundational media safety layer up and running in minutes, not days.
We highly recommend using this package as an optional extension of the main Guard client. This provides a single, unified API for both cloud and local detection.
pip install guard-client[local]pip install guard-local-detectorIf you installed via guard-client[local], you do not need to import this package directly. Ask the client for the
local engine and it routes every call here — no API key, and no network access.
from guard_client import GuardClient
with GuardClient(engine="local") as client:
result = client.analyze("/local/paths/to/video.mp4")
for item in result.results:
print(f"{item.label}: {item.score}") # AI-Generated: 71The results carry the same labels, task ids, and 0-100 scores a cloud run returns, so the same code works against
either engine. A cloud-configured client can also send a single call locally with client.analyze(source, engine="local").
The engine works on bytes and a MIME type, never a path — reading the source is the caller's job.
import guard_local
engine = guard_local.LocalDetectorEngine()
with open("/local/paths/to/image.png", "rb") as handle:
results = engine.analyze(handle.read(), "image/png")
for item in results:
print(f"{item['label']}: {item['score']:.2f}")
# AI-Generated: 0.90
# Violence: 0.02
# Explicit: 0.01This project uses uv for lightning-fast Python package and environment management.
- uv (already installed on your system)
-
Clone the repository:
git clone https://github.com/elhio/guard-local-python.git cd guard-local-python -
Sync the environment:
uv sync
This command automatically creates a
.venvvirtual environment, reads theuv.lockfile, and installs all core and development dependencies exactly as they were locked. -
Run tests:
uv run pytest
-
Formatting, linting, and type checking:
uv run ruff format uv run ruff check uv run mypy
-
Build for production:
uv build
We welcome contributions! Please note that all contributors must sign our automated CLA. Read more in our Contributing Guide.
This repository and its corresponding PyPI package are licensed under the GNU Affero General Public License v3.0 (AGPL-3.0) - see the LICENSE file for details.