File size: 547 Bytes
c1ecb8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
ARF OSS constants – shared across modules.
"""
OSS_EDITION = "OSS"
OSS_LICENSE = "Apache 2.0"
ENTERPRISE_UPGRADE_URL = "https://huggingface.co/spaces/petter2025/agentic-reliability-framework?enterprise"
EXECUTION_ALLOWED = False
# Limits
MAX_SIMILARITY_CACHE = 100
SIMILARITY_THRESHOLD = 0.7
MAX_POLICY_VIOLATIONS = 10
MAX_RISK_FACTORS = 20
MAX_COST_PROJECTIONS = 5
MAX_DECISION_TREE_DEPTH = 5
MAX_ALTERNATIVE_ACTIONS = 5
class OSSBoundaryError(Exception):
"""Raised when OSS edition attempts an enterprise-only operation."""
pass |