Quantlix Documentation

Ship AI with safety rules, document lookup, run visibility, and quality checks—without stitching four tools together.

New here?

Start in the product first; deep references stay linked below.

Product & integrations

Advanced governance & contracts

For teams tightening enforcement, budgets, and schema contracts after the basics feel familiar.

Platform

Quick start (API)

Deploy with a contract, run inference, and see enforcement at the boundary.

1. Deploy with enforcement

Use dashboard onboarding or CLI. Contract enforcement is enabled by default.

2. Run inference

Valid requests pass. Invalid requests are blocked at the boundary.

curl -X POST https://api.quantlix.ai//run \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"deployment_id": "YOUR_DEPLOYMENT_ID", "input": {"prompt": "Hello, world!"}}'

3. CLI

Install, authenticate, deploy, and run. Enforcement applies to every request.

pip install quantlix
quantlix login
quantlix deploy qx-example
quantlix run <deployment_id> -i '{"prompt": "Hello!"}'

Markdown mirror for editors: docs/START_HERE.md in the repo (linked from /docs/start above).