DocsQuickstart

Quickstart

Integrate JuridGuard’s AI legal infrastructure in minutes. Learn how to configure your environment and make your first secure API call.

Founder Access — Private Beta Phase

Access to the @jg/core SDK is currently in private testing for Founding Members. Production deployments via API will be opened gradually over the coming weeks.

AI Act Note

All our SDKs include by default the compliance controls required by the European AI regulation (AI Act). Transparency logs are generated automatically.

Installation

Start by installing the JuridGuard client package for your development environment.

Terminal
$ npm install @juridguard/core-sdk

Initialization

Configure the client with your API key to start monitoring your legal data flows.

TypeScript
import { JuridGuard } from "@juridguard/core-sdk";
const client = new JuridGuard({
apiKey: process.env.JURID_KEY,
environment: "production"
});
// Instant compliance analysis
const response = await client.analyze({
context: "employment_contract",
data: payload
});

Usage example

Once initialized, you can run a full compliance scan on any AI artifact deployed in your infrastructure.

TypeScript
// Run a full audit
const audit = await client.runAudit({
modelId: "gpt-4-prod-v2",
frameworks: ["EU_AI_ACT", "GDPR"],
strictMode: true
});
console.log(audit.complianceScore);
// → 94.2

Next steps

© 2024 JuridGuard — Secure Infrastructure