evo_framework 2025.2.51300

Evo(lution) framework: A powerful framework designed for ai
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
///IEvo
pub trait IEvo {
    ///evo_version
    fn evo_version() -> u64{
        crate::VERSION
    }
    ///version
    fn version(&self) -> u64{
        Self::evo_version()
    }

}