aphelion-core 1.1.0

Core library for Aphelion AI pipeline framework - graphs, configs, pipelines, backends, diagnostics
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Integration stubs for rust-ai-core.

#[cfg(feature = "rust-ai-core")]
pub mod adapter {
    use crate::config::ModelConfig;
    use crate::graph::BuildGraph;

    pub fn to_rust_ai_core(_graph: &BuildGraph, _config: &ModelConfig) {
        // TODO: map aphelion-core types to rust-ai-core equivalents.
    }
}