Official Java SDK for the Palveron AI Governance Gateway — policy enforcement, trace verification, and blockchain-anchored audit trails for every AI interaction.
Every AI interaction your JVM service makes — governed, audited, and optionally anchored to the blockchain. Stdlib-only client.
- Zero runtime dependencies — built on
java.net.http.HttpClient, no third-party JARs - Multi-modal — text, images, audio, documents, code
- Enterprise-grade — retry with exponential backoff, circuit breaker, typed exceptions
- On-prem ready — point to any Palveron gateway endpoint
Add the JitPack repository to your build, then declare the SDK as a dependency.
repositories {
maven { url = uri("https://jitpack.io") }
}
dependencies {
implementation("com.github.palveron:sdk-java:v1.0.0")
}<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.palveron</groupId>
<artifactId>sdk-java</artifactId>
<version>v1.0.0</version>
</dependency>import com.palveron.sdk.Palveron;
var client = Palveron.builder(System.getenv("PALVERON_API_KEY"))
.baseUrl("https://gateway.palveron.com")
.build();
var result = client.verify("Transfer $50,000 to account DE89370400440532013000");
if (result.isBlocked()) {
throw new SecurityException("Blocked by policy: " + result.reason());
}
// Always use result.output() instead of the raw prompt so downstream
// LLMs never see PII / secrets the gateway redacted.
System.out.println(result.output());
System.out.println(result.traceId());- Policy enforcement — every prompt routed through your active guardrails before it reaches an LLM
- Trace verification — every decision logged with an integrity hash for tamper detection
- Multi-modal attachments — file helpers with auto MIME detection
- Agentic / MCP context — pass
RequestContextso the audit trail captures the tool chain - Blockchain attestation — high-severity traces anchored to Flare for cryptographic audit trails
- JDK 17 or newer
- No third-party runtime dependencies
- Documentation — docs.palveron.com/sdks
- Dashboard — palveron.com
- Support — hello@palveron.com
- GitHub — palveron/sdk-java
- JitPack — jitpack.io/#palveron/sdk-java
- Changelog — CHANGELOG.md
MIT — Copyright © 2026 Palveron.