nexsight 0.1.0

Memory layer library for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! NexSight - Memory layer library for AI agents
//!
//! A library for managing memory in AI agent applications.

/// Prints a greeting from NexSight
pub fn hello() {
    println!("Hello, NexSight!");
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_hello() {
        hello();
    }
}