directorytree/privacy-filter
Composer 安装命令:
composer require directorytree/privacy-filter
包简介
Laravel wrapper for privacy-filter.cpp binaries.
README 文档
README
Privacy Filter
Install and use compiled privacy-filter.cpp binaries from Laravel applications.
Introduction
Privacy Filter provides a Laravel wrapper around the privacy-filter.cpp command line binary. It installs the compiled binary for the current operating system, downloads the GGUF model used by the binary, and exposes a small PHP API for detecting private entities in text.
Installation
You may install the package via Composer:
composer require directorytree/privacy-filter
After installing the package, run the privacy-filter:install Artisan command. This command will install both the compiled binary and the GGUF model required by the runtime API:
php artisan privacy-filter:install
If either file already exists, the installer will leave it in place. You may use the --force option to overwrite the installed files:
php artisan privacy-filter:install --force
Configuration
You may publish the package configuration file using the vendor:publish Artisan command:
php artisan vendor:publish --tag=privacy-filter-config
The published configuration file allows you to customize the installed binary path, model path, process timeout, model URL, and binary release source:
'paths' => [ 'binary' => env('PRIVACY_FILTER_BINARY_PATH', storage_path('app/privacy-filter/bin/privacy-filter')), 'model' => env('PRIVACY_FILTER_MODEL_PATH', storage_path('app/privacy-filter/models/privacy-filter-f16.gguf')), ], 'process' => [ 'timeout' => (float) env('PRIVACY_FILTER_TIMEOUT', 60), ], 'model' => [ 'url' => env('PRIVACY_FILTER_MODEL_URL', 'https://huggingface.co/LocalAI-io/privacy-filter-GGUF/resolve/main/privacy-filter-f16.gguf'), ], 'release' => [ 'repository' => env('PRIVACY_FILTER_BINARY_REPOSITORY', 'DirectoryTree/PrivacyFilterBinaries'), 'version' => env('PRIVACY_FILTER_BINARY_VERSION', 'v1.0.0'), ],
Installing Assets
The privacy-filter:install command installs all assets required by the package:
php artisan privacy-filter:install
You may install the binary and model independently if you need more control over deployment:
php artisan privacy-filter:install-binary php artisan privacy-filter:install-model
The binary installer downloads the correct archive for the current operating system from the configured GitHub release. You may install a different release or provide a direct archive URL:
php artisan privacy-filter:install-binary --release=v1.0.0 php artisan privacy-filter:install-binary --url=https://example.com/privacy-filter-darwin-arm64.tar.gz
The model installer downloads the configured GGUF model. You may also provide a direct model URL:
php artisan privacy-filter:install-model --url=https://example.com/privacy-filter.gguf
Usage
You may classify text using the PrivacyFilter facade. The entities method returns an array of Entity instances:
use DirectoryTree\PrivacyFilter\Facades\PrivacyFilter; $entities = PrivacyFilter::entities('Contact John Doe at jdoe@example.com.'); /** @var \DirectoryTree\PrivacyFilterClassifier\Entity $entity */ foreach ($entities as $entity) { $entity->type; // private_email $entity->text; // jdoe@example.com $entity->start; // 20 $entity->end; // 36 $entity->score; // 0.98 }
Each entity contains the detected type, original text, byte offsets, and confidence score. You may also retrieve the byte length of the entity:
$length = $entity->length();
Thresholds
The classifier uses a default threshold of 0.5. You may provide a threshold at runtime when classifying text:
$entities = PrivacyFilter::entities( text: 'Contact John Doe at jdoe@example.com.', threshold: 0.75, );
Entity Types
The raw entity type is available through the entity's type property:
$entity->type;
For known privacy-filter entity types, you may retrieve the matching EntityType enum instance:
use DirectoryTree\PrivacyFilterClassifier\EntityType; if ($entity->type() === EntityType::PrivateEmail) { // ... }
If the binary returns an entity type that is not known by this package, the type method will return null.
Testing
You may use the fake method to prevent the package from invoking the installed binary during tests. The fake method accepts a list of entities that should be returned for every classification:
use DirectoryTree\PrivacyFilter\Facades\PrivacyFilter; use DirectoryTree\PrivacyFilterClassifier\Entity; PrivacyFilter::fake([ new Entity( type: 'private_email', start: 20, end: 36, score: 0.98, text: 'jdoe@example.com', ), ]);
You may also fake responses for specific text using exact strings or wildcard patterns:
PrivacyFilter::fake([ '*jdoe@example.com*' => [ new Entity( type: 'private_email', start: 20, end: 36, score: 0.98, text: 'jdoe@example.com', ), ], ]);
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-18