outlines_core/
primitives.rs

1
2
3
4
5
6
7
8
9
10
//! Defines fundamental types used throughout the crate.

/// Token content.
pub type Token = Vec<u8>;

/// Token identifier.
pub type TokenId = u32;

/// State id.
pub type StateId = u32;