aurex-sdk 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aurex_sdk/__init__.py ADDED
@@ -0,0 +1,32 @@
1
+ """
2
+ Aurex Zero-Trust, Local-First SDK
3
+ Provides asynchronous, zero-PII auditing for LLM costs and credit scoring.
4
+ """
5
+
6
+ from .auditor import AurexAuditor, AurexConfig
7
+ from .decisions import AurexDecision, AurexAction
8
+ from .exceptions import (
9
+ AurexError,
10
+ AurexBudgetExceeded,
11
+ AurexBlocked,
12
+ AurexConfigError,
13
+ AurexRecovered,
14
+ AurexResilienceExhausted,
15
+ )
16
+ from .resilience import ResiliencePolicy, classify_response, parse_resilience_config
17
+
18
+ __all__ = [
19
+ "AurexAuditor",
20
+ "AurexConfig",
21
+ "AurexDecision",
22
+ "AurexAction",
23
+ "AurexError",
24
+ "AurexBudgetExceeded",
25
+ "AurexBlocked",
26
+ "AurexConfigError",
27
+ "AurexRecovered",
28
+ "AurexResilienceExhausted",
29
+ "ResiliencePolicy",
30
+ "classify_response",
31
+ "parse_resilience_config",
32
+ ]