Build the future with NRS

REST API, Python SDK, Swift SDK, Kotlin SDK. Dual-mode reasoning — deterministic precision and probabilistic exploration in one API. Integrate it today.

<50ms
API Latency
99.99%
Uptime SLA
$2/1M
Output Cost
0.000%
Hallucination Rate

One API Call Away

query.py
import nrs

client = nrs.Client(api_key="nrs_prod_...")

response = client.reason(
    query="Analyze drug interaction between metformin and lisinopril",
    domain="medical",
    confidence_threshold=0.95,
)

print(response.answer)          # Verified answer (deterministic or probabilistic)
print(response.confidence)      # 0.997
print(response.reasoning_path)  # Full T0→T3 pipeline trace
print(response.citations)       # Verified source references
print(response.cost)            # $0.0009 (843 output tokens)

Official SDKs

🐍

Python

pip install nrs
🍎

Swift

SPM: NRSClient
🤖

Kotlin

ai.velariq:nrs-sdk

REST API

api.atheriongroup.com/v2

NRSIP Protocol

A purpose-built transport protocol for AI reasoning with cryptographic signatures, hop-chain verification, and tier gating.

Signed Payloads

Every packet cryptographically signed with Ed25519. Tamper-proof reasoning chain.

Hop-Chain Audit

Full trace of every processing node a query touches. SOC2-compliant by default.

Tier Gating

T0 through T3 processing tiers with automatic escalation based on confidence thresholds.