configuration - zfifteen/unified-framework GitHub Wiki
Configuration options and settings for the Z Framework API.
This document describes the configuration parameters and options available for customizing the Z Framework API behavior.
-
File:
config/api_config.json
- Purpose: Primary API configuration
- Format: JSON
- Z_FRAMEWORK_PRECISION: Decimal precision (default: 50)
- Z_FRAMEWORK_VALIDATION: Validation mode (strict|normal|minimal)
- Z_FRAMEWORK_CACHE: Enable computation caching (true|false)
{
"precision": {
"mpmath_dps": 50,
"validation_threshold": 1e-16,
"bootstrap_samples": 1000
}
}
{
"performance": {
"enable_parallel": true,
"max_workers": 4,
"cache_size": 1000
}
}
{
"validation": {
"enable_precision_checks": true,
"require_bootstrap_ci": true,
"statistical_significance": 1e-6
}
}
from src.api.config import load_config
config = load_config('config/api_config.json')
export Z_FRAMEWORK_PRECISION=50
export Z_FRAMEWORK_VALIDATION=strict