//! # Core Platform Functionality
//!
//! This module contains the core functionality of the Inferno platform including:
//! - Configuration system (new builder pattern + presets)
//! - Model execution backends
//! - Model discovery and metadata
//! - I/O format handling
//! - Security and sandboxing
//!
//! The core module provides the foundational capabilities that other modules build upon.
// New configuration system (v0.4.0+)
// Re-export from existing locations for now, will move files later
pub use cratebackends;
pub use crateio;
pub use cratemodels;
pub use cratesecurity;
// Keep old config available for backward compatibility
pub use crateconfig as legacy_config;
/// Core error types for the Inferno platform
pub use crate::;