next_web_ai/model/
model_description.rs

1pub trait ModelDescription: Send {
2    fn get_name(&self) -> &str;
3
4    fn get_description(&self) -> &str {
5        ""
6    }
7
8    fn get_version(&self) -> &str {
9        ""
10    }
11}