aipack 0.8.23

Command Agent runner to accelerate production coding with genai.
use crate::model::{Error, Result, ScalarStruct};
use macro_rules_attribute as mra;

// Simple wrapper for SQLite Ids
#[mra::derive(Debug, ScalarStruct!)]
pub struct Id(i64);

impl Id {
	pub fn as_i64(&self) -> i64 {
		self.0
	}
}

// from &i64
impl From<&i64> for Id {
	fn from(val: &i64) -> Id {
		Id(*val)
	}
}

impl TryFrom<String> for Id {
	type Error = Error;
	fn try_from(val: String) -> Result<Id> {
		let id = val
			.parse()
			.map_err(|err| format!("id should be a number was '{val}'.\nCause: {err}"))?;
		Ok(Id(id))
	}
}