spring_ai_rs/ai_interface/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod callback;
mod memory;

#[derive(Debug, Copy, Clone)]
pub struct AIInterface {
    pub ai_id: i32,
}

impl AIInterface {
    pub fn new(ai_id: i32) -> Self {
        Self { ai_id }
    }
}