delentia-os
Python SDK for AI Engineers & Data Scientists (Python 3.10+)
v2.2.6
1,250 downloads/mo
1. Installation
# Install via pip
pip install delentia-os
2. Code Example
Initialize intent processing and apply local FDIA evaluation logic on your workspace:
from delentia_os.core.loop import JITNALoop
from delentia_os.core.fdia import FDIAScorer
# Initialize scoring engine
scorer = FDIAScorer()
# Run intent loop
with JITNALoop(config="rct_config.yaml") as loop:
# Process intent
response = loop.process(
intent="Trigger backup container and sync keys",
context={"actor": "admin"}
)
# Calculate score F = D^I * A
score = scorer.score(intent=loop.intent, response=response)
print(f"FDIA F-Score: {score.F:.3f} (Passed: {score.F >= 0.87})")Explore protocol specifications: JITNA v3 / RCT-7
Repository source: Delentia-OS Repo