spring_ai_rs/ai_interface/
mod.rs

1pub mod callback;
2mod memory;
3
4#[derive(Debug, Copy, Clone)]
5pub struct AIInterface {
6    pub ai_id: i32,
7}
8
9impl AIInterface {
10    pub fn new(ai_id: i32) -> Self {
11        Self { ai_id }
12    }
13}