The Philter SDK for Java is an API client for Philter. Philter identifies and manipulates sensitive information such as Protected Health Information (PHI) and personally identifiable information (PII) in natural language text. Philter is built upon the open source PII/PHI detection engine Phileas.
Refer to the Philter API documentation for details on the methods available.
Snapshots and releases are available in our Maven repositories so add the following to your Maven configuration:
<repository>
<id>philterd-repository-releases</id>
<url>https://artifacts.philterd.ai/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>philterd-repository-snapshots</id>
<url>https://artifacts.philterd.ai/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
With an available running instance of Philter, to filter text:
PhilterClient client = new PhilterClient.PhilterClientBuilder().withEndpoint("https://127.0.0.1:8080").build();
FilterResponse filterResponse = client.filter(text);
To filter text with explanation:
PhilterClient client = new PhilterClient.PhilterClientBuilder().withEndpoint("https://127.0.0.1:8080").build();
ExplainResponse explainResponse = client.explain(text);
- 1.4.0:
- Modified /api/status response.
- Renamed profiles to policies.
- 1.3.1:
- Changed from com.mtnfog to ai.philterd.
- 1.3.0:
- Added support for SSL authentication.
- Added support for filtering PDF documents.
- Removed token-based API authentication.
- Removed models client.
- 1.2.0:
- Added option for API authentication support.
- Added
salt
toSpan
for when theHASH_SHA256_REPLACE
filter strategy is applied by Philter. - Changed artifact name to
philter-sdk-java
- Added alerts retrieval/deletion to client.
- Added models client.
- 1.1.0:
- Various changes/fixes.
- Split SDKs into separate projects.
- 1.0.0:
- Initial release.
This project is licensed under the Apache License, version 2.0.
Copyright 2024 Philterd, LLC. Philter is a registered trademark of Philterd, LLC.