Update README.md
Browse files
README.md
CHANGED
|
@@ -230,3 +230,107 @@ Sovereign™ is built specifically to satisfy requirements of:
|
|
| 230 |
"message": "Model is operating safely."
|
| 231 |
}
|
| 232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 230 |
"message": "Model is operating safely."
|
| 231 |
}
|
| 232 |
|
| 233 |
+
4. Output Example (Technical Mode)
|
| 234 |
+
|
| 235 |
+
{
|
| 236 |
+
"fingerprint": "...",
|
| 237 |
+
"attestation": "...",
|
| 238 |
+
"integrity_certificate": {
|
| 239 |
+
"model_version": "1.4",
|
| 240 |
+
"parent_model": "Base-LM-v3",
|
| 241 |
+
"lineage_hash": "..."
|
| 242 |
+
},
|
| 243 |
+
"behaviour": {
|
| 244 |
+
"drift_score": 0.04,
|
| 245 |
+
"anomaly": false,
|
| 246 |
+
"semantic_risk": 6
|
| 247 |
+
},
|
| 248 |
+
"firewall": {
|
| 249 |
+
"blocked_prompts": 0,
|
| 250 |
+
"dangerous_output": false
|
| 251 |
+
},
|
| 252 |
+
"audit_entry": "append-only-log"
|
| 253 |
+
}
|
| 254 |
+
|
| 255 |
+
|
| 256 |
+
---
|
| 257 |
+
|
| 258 |
+
5. Installation
|
| 259 |
+
|
| 260 |
+
pip install sovereign-core
|
| 261 |
+
|
| 262 |
+
|
| 263 |
+
---
|
| 264 |
+
|
| 265 |
+
6. Quick Start
|
| 266 |
+
|
| 267 |
+
from sovereign import run_sentinel
|
| 268 |
+
|
| 269 |
+
result = run_sentinel(
|
| 270 |
+
engine_name="Sovereign-Core",
|
| 271 |
+
parent_model="llm-base",
|
| 272 |
+
model_version="1.0",
|
| 273 |
+
data_tags=["finance"],
|
| 274 |
+
environment="production"
|
| 275 |
+
)
|
| 276 |
+
|
| 277 |
+
print(result)
|
| 278 |
+
|
| 279 |
+
|
| 280 |
+
---
|
| 281 |
+
|
| 282 |
+
7. Deployment
|
| 283 |
+
|
| 284 |
+
Sovereign™ works in:
|
| 285 |
+
|
| 286 |
+
On-prem secure datacenters
|
| 287 |
+
|
| 288 |
+
Air-gapped / sovereign networks
|
| 289 |
+
|
| 290 |
+
AWS / Azure / GCP / OCI
|
| 291 |
+
|
| 292 |
+
Confidential Compute environments
|
| 293 |
+
|
| 294 |
+
Banking & defence clouds
|
| 295 |
+
|
| 296 |
+
|
| 297 |
+
Deployment Models:
|
| 298 |
+
|
| 299 |
+
Python library
|
| 300 |
+
|
| 301 |
+
Sidecar microservice
|
| 302 |
+
|
| 303 |
+
API gateway
|
| 304 |
+
|
| 305 |
+
Container (Docker/K8s)
|
| 306 |
+
|
| 307 |
+
|
| 308 |
+
|
| 309 |
+
---
|
| 310 |
+
|
| 311 |
+
8. Demo
|
| 312 |
+
|
| 313 |
+
Live demonstration:
|
| 314 |
+
https://huggingface.co/spaces/rezabarkhordary/AI-Sovereign-sentinel
|
| 315 |
+
|
| 316 |
+
|
| 317 |
+
---
|
| 318 |
+
|
| 319 |
+
9. License & Support
|
| 320 |
+
|
| 321 |
+
Commercial licence available for:
|
| 322 |
+
|
| 323 |
+
Banks
|
| 324 |
+
|
| 325 |
+
Defence & Intelligence
|
| 326 |
+
|
| 327 |
+
Government ministries
|
| 328 |
+
|
| 329 |
+
Critical infrastructure
|
| 330 |
+
|
| 331 |
+
Enterprise AI estates
|
| 332 |
+
|
| 333 |
+
|
| 334 |
+
For access or technical deep dive:
|
| 335 |
+
reza@dataclear.tech
|
| 336 |
+
|