X-40
Quickstart

First governed call

Use your X-Api-Key header and call the hosted API. You receive a policy decision and audit output.

Example (facts profile)
curl -sS -X POST https://x40-api.neoamorfic.ai/v1/llm/run \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: <YOUR_X40_KEY>" \
  -d '{
    "model":"gpt-4.1",
    "profile":"facts",
    "prompt":"What gas do plants absorb from the atmosphere? Reply with only the gas.",
    "trace_mode":"summary",
    "text_mode":"text",
    "max_output_tokens":32
  }'
Operational expectation
  • If policy returns accept, you can auto-ship.
  • If policy returns require_verification, route to review or fallback.
  • Profiles determine guardrails (unknowns, attack, math verification).