1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
//! A safe wrapper around `llama_model`.
use std::ffi::CString;
use std::os::raw::c_int;
use std::path::Path;
use std::ptr::NonNull;
use crate::{LlamaContextLoadError, LlamaModelLoadError, StringToTokenError, TokenToStringError};
use crate::context::LlamaContext;
use crate::context::params::LlamaContextParams;
use crate::llama_backend::LlamaBackend;
use crate::model::params::LlamaModelParams;
use crate::token::LlamaToken;
use crate::token_type::LlamaTokenType;
pub mod params;
/// A safe wrapper around `llama_model`.
#[derive(Debug)]
#[repr(transparent)]
#[allow(clippy::module_name_repetitions)]
pub struct LlamaModel {
pub(crate) model: NonNull<llama_cpp_sys_2::llama_model>,
}
/// How to determine if we should prepend a bos token to tokens
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum AddBos {
/// Add the beginning of stream token to the start of the string.
Always,
/// Do not add the beginning of stream token to the start of the string.
Never,
}
unsafe impl Send for LlamaModel {}
unsafe impl Sync for LlamaModel {}
impl LlamaModel {
/// get the number of tokens the model was trained on
///
/// # Panics
///
/// If the number of tokens the model was trained on does not fit into an `u32`. This should be impossible on most
/// platforms due to llama.cpp returning a `c_int` (i32 on most platforms) which is almost certainly positive.
#[must_use]
pub fn n_ctx_train(&self) -> u32 {
let n_ctx_train = unsafe { llama_cpp_sys_2::llama_n_ctx_train(self.model.as_ptr()) };
u32::try_from(n_ctx_train).expect("n_ctx_train fits into an u32")
}
/// Get all tokens in the model.
pub fn tokens(
&self,
) -> impl Iterator<Item = (LlamaToken, Result<String, TokenToStringError>)> + '_ {
(0..self.n_vocab())
.map(LlamaToken::new)
.map(|llama_token| (llama_token, self.token_to_str(llama_token)))
}
/// Get the beginning of stream token.
#[must_use]
pub fn token_bos(&self) -> LlamaToken {
let token = unsafe { llama_cpp_sys_2::llama_token_bos(self.model.as_ptr()) };
LlamaToken(token)
}
/// Get the end of stream token.
#[must_use]
pub fn token_eos(&self) -> LlamaToken {
let token = unsafe { llama_cpp_sys_2::llama_token_eos(self.model.as_ptr()) };
LlamaToken(token)
}
/// Get the newline token.
#[must_use]
pub fn token_nl(&self) -> LlamaToken {
let token = unsafe { llama_cpp_sys_2::llama_token_nl(self.model.as_ptr()) };
LlamaToken(token)
}
/// Convert single token to a string.
///
/// # Errors
///
/// See [`TokenToStringError`] for more information.
pub fn token_to_str(&self, token: LlamaToken) -> Result<String, TokenToStringError> {
self.token_to_str_with_size(token, 32)
}
/// Convert a vector of tokens to a single string.
///
/// # Errors
///
/// See [`TokenToStringError`] for more information.
pub fn tokens_to_str(&self, tokens: &[LlamaToken]) -> Result<String, TokenToStringError> {
let mut builder = String::with_capacity(tokens.len() * 4);
for str in tokens.iter().copied().map(|t| self.token_to_str(t)) {
builder += &str?;
}
Ok(builder)
}
/// Convert a string to a Vector of tokens.
///
/// # Errors
///
/// - if [`str`] contains a null byte.
///
/// # Panics
///
/// - if there is more than [`usize::MAX`] [`LlamaToken`]s in [`str`].
///
///
/// ```no_run
/// use llama_cpp_2::model::LlamaModel;
///
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use std::path::Path;
/// use llama_cpp_2::model::AddBos;
/// let backend = llama_cpp_2::llama_backend::LlamaBackend::init()?;
/// let model = LlamaModel::load_from_file(&backend, Path::new("path/to/model"), &Default::default())?;
/// let tokens = model.str_to_token("Hello, World!", AddBos::Always)?;
/// # Ok(())
/// # }
pub fn str_to_token(
&self,
str: &str,
add_bos: AddBos,
) -> Result<Vec<LlamaToken>, StringToTokenError> {
let add_bos = match add_bos {
AddBos::Always => true,
AddBos::Never => false,
};
let tokens_estimation = std::cmp::max(8, (str.len() / 2) + usize::from(add_bos));
let mut buffer = Vec::with_capacity(tokens_estimation);
let c_string = CString::new(str)?;
let buffer_capacity =
c_int::try_from(buffer.capacity()).expect("buffer capacity should fit into a c_int");
let size = unsafe {
llama_cpp_sys_2::llama_tokenize(
self.model.as_ptr(),
c_string.as_ptr(),
c_int::try_from(c_string.as_bytes().len())?,
buffer.as_mut_ptr(),
buffer_capacity,
add_bos,
true,
)
};
// if we fail the first time we can resize the vector to the correct size and try again. This should never fail.
// as a result - size is guaranteed to be positive here.
let size = if size.is_negative() {
buffer.reserve_exact(usize::try_from(-size).expect("usize's are larger "));
unsafe {
llama_cpp_sys_2::llama_tokenize(
self.model.as_ptr(),
c_string.as_ptr(),
c_int::try_from(c_string.as_bytes().len())?,
buffer.as_mut_ptr(),
-size,
add_bos,
true,
)
}
} else {
size
};
let size = usize::try_from(size).expect("size is positive and usize ");
// Safety: `size` < `capacity` and llama-cpp has initialized elements up to `size`
unsafe { buffer.set_len(size) }
Ok(buffer.into_iter().map(LlamaToken).collect())
}
/// Get the type of a token.
///
/// # Panics
///
/// If the token type is not known to this library.
#[must_use]
pub fn token_type(&self, LlamaToken(id): LlamaToken) -> LlamaTokenType {
let token_type = unsafe { llama_cpp_sys_2::llama_token_get_type(self.model.as_ptr(), id) };
LlamaTokenType::try_from(token_type).expect("token type is valid")
}
/// Convert a token to a string with a specified buffer size.
///
/// Generally you should use [`LlamaModel::token_to_str`] instead as 8 bytes is enough for most words and
/// the extra bytes do not really matter.
///
/// # Errors
///
/// - if the token type is unknown
/// - the resultant token is larger than `buffer_size`.
/// - the string returend by llama-cpp is not valid utf8.
///
/// # Panics
///
/// - if [`buffer_size`] does not fit into a [`c_int`].
/// - if the returned size from llama-cpp does not fit into a [`usize`]. (this should never happen)
pub fn token_to_str_with_size(
&self,
token: LlamaToken,
buffer_size: usize,
) -> Result<String, TokenToStringError> {
if token == self.token_nl() {
return Ok(String::from("\n"));
}
match self.token_type(token) {
LlamaTokenType::Normal | LlamaTokenType::UserDefined => {}
LlamaTokenType::Control => {
if token == self.token_bos() || token == self.token_eos() {
return Ok(String::new());
}
}
LlamaTokenType::Unknown
| LlamaTokenType::Undefined
| LlamaTokenType::Byte
| LlamaTokenType::Unused => {
return Ok(String::new());
}
}
let string = CString::new(vec![b'*'; buffer_size]).expect("no null");
let len = string.as_bytes().len();
let len = c_int::try_from(len).expect("length fits into c_int");
let buf = string.into_raw();
let size = unsafe {
llama_cpp_sys_2::llama_token_to_piece(self.model.as_ptr(), token.0, buf, len)
};
match size {
0 => Err(TokenToStringError::UnknownTokenType),
i if i.is_negative() => Err(TokenToStringError::InsufficientBufferSpace(i)),
size => {
let string = unsafe { CString::from_raw(buf) };
let mut bytes = string.into_bytes();
let len = usize::try_from(size).expect("size is positive and fits into usize");
bytes.truncate(len);
Ok(String::from_utf8(bytes)?)
}
}
}
/// The number of tokens the model was trained on.
///
/// This returns a `c_int` for maximum compatibility. Most of the time it can be cast to an i32
/// without issue.
#[must_use]
pub fn n_vocab(&self) -> i32 {
unsafe { llama_cpp_sys_2::llama_n_vocab(self.model.as_ptr()) }
}
/// The type of vocab the model was trained on.
///
/// # Panics
///
/// If llama-cpp emits a vocab type that is not known to this library.
#[must_use]
pub fn vocab_type(&self) -> VocabType {
let vocab_type = unsafe { llama_cpp_sys_2::llama_vocab_type(self.model.as_ptr()) };
VocabType::try_from(vocab_type).expect("invalid vocab type")
}
/// This returns a `c_int` for maximum compatibility. Most of the time it can be cast to an i32
/// without issue.
#[must_use]
pub fn n_embd(&self) -> c_int {
unsafe { llama_cpp_sys_2::llama_n_embd(self.model.as_ptr()) }
}
/// loads a model from a file.
///
/// # Errors
///
/// See [`LlamaModelLoadError`] for more information.
#[tracing::instrument(skip_all, fields(params))]
pub fn load_from_file(
_: &LlamaBackend,
path: impl AsRef<Path>,
params: &LlamaModelParams,
) -> Result<Self, LlamaModelLoadError> {
let path = path.as_ref();
debug_assert!(Path::new(path).exists(), "{path:?} does not exist");
let path = path
.to_str()
.ok_or(LlamaModelLoadError::PathToStrError(path.to_path_buf()))?;
let cstr = CString::new(path)?;
let llama_model = unsafe {
llama_cpp_sys_2::llama_load_model_from_file(cstr.as_ptr(), params.params)
};
let model = NonNull::new(llama_model).ok_or(LlamaModelLoadError::NullResult)?;
tracing::debug!(?path, "Loaded model");
Ok(LlamaModel { model })
}
/// Create a new context from this model.
///
/// # Errors
///
/// There is many ways this can fail. See [`LlamaContextLoadError`] for more information.
// we intentionally do not derive Copy on `LlamaContextParams` to allow llama.cpp to change the type to be non-trivially copyable.
#[allow(clippy::needless_pass_by_value)]
pub fn new_context(
&self,
_: &LlamaBackend,
params: LlamaContextParams,
) -> Result<LlamaContext, LlamaContextLoadError> {
let context_params = params.context_params;
let context = unsafe {
llama_cpp_sys_2::llama_new_context_with_model(self.model.as_ptr(), context_params)
};
let context = NonNull::new(context).ok_or(LlamaContextLoadError::NullReturn)?;
Ok(LlamaContext::new(self, context, params.embeddings()))
}
}
impl Drop for LlamaModel {
fn drop(&mut self) {
unsafe { llama_cpp_sys_2::llama_free_model(self.model.as_ptr()) }
}
}
/// a rusty equivalent of `llama_vocab_type`
#[repr(u32)]
#[derive(Debug, Eq, Copy, Clone, PartialEq)]
pub enum VocabType {
/// Byte Pair Encoding
BPE = llama_cpp_sys_2::LLAMA_VOCAB_TYPE_BPE as _,
/// Sentence Piece Tokenizer
SPM = llama_cpp_sys_2::LLAMA_VOCAB_TYPE_SPM as _,
}
/// There was an error converting a `llama_vocab_type` to a `VocabType`.
#[derive(thiserror::Error, Debug, Eq, PartialEq)]
pub enum LlamaTokenTypeFromIntError {
/// The value is not a valid `llama_token_type`. Contains the int value that was invalid.
#[error("Unknown Value {0}")]
UnknownValue(llama_cpp_sys_2::llama_vocab_type),
}
impl TryFrom<llama_cpp_sys_2::llama_vocab_type> for VocabType {
type Error = LlamaTokenTypeFromIntError;
fn try_from(value: llama_cpp_sys_2::llama_vocab_type) -> Result<Self, Self::Error> {
match value {
llama_cpp_sys_2::LLAMA_VOCAB_TYPE_BPE => Ok(VocabType::BPE),
llama_cpp_sys_2::LLAMA_VOCAB_TYPE_SPM => Ok(VocabType::SPM),
unknown => Err(LlamaTokenTypeFromIntError::UnknownValue(unknown)),
}
}
}