pub struct GenerateContext {Show 13 fields
pub prompt_tokens: Vec<u16>,
pub prompt_cached: CachedPrompt,
pub prefix: Tokens,
pub suffix: Tokens,
pub output: Option<TensorCpu<f32>>,
pub choices: Vec<Tokens>,
pub model_text: Vec<u8>,
pub buffer: Vec<u8>,
pub model_tokens: Vec<u16>,
pub formatters: Vec<Arc<RwLock<dyn Formatter + Send + Sync>>>,
pub instant: Option<Instant>,
pub request: GenerateRequest,
pub sender: Sender<Token>,
}
Fields§
§prompt_tokens: Vec<u16>
Tokens that are provided at first.
prompt_cached: CachedPrompt
Whether the prompt has already been processed and cached.
prefix: Tokens
Tokens that have been computed and cached.
suffix: Tokens
Tokens to be computed.
output: Option<TensorCpu<f32>>
The output of the model from the last run.
choices: Vec<Tokens>
Tokens to be chosen if this is a choose request.
model_text: Vec<u8>
Texts that are output by the model.
buffer: Vec<u8>
Model may output partial utf-8. This makes sure the output is always valid.
model_tokens: Vec<u16>
Tokens that are output by the model.
formatters: Vec<Arc<RwLock<dyn Formatter + Send + Sync>>>
Compiled BNF schema, if any.
instant: Option<Instant>
For measuring time used.
request: GenerateRequest
Generate request provided by the caller.
sender: Sender<Token>
To send back generated tokens.
Implementations§
Trait Implementations§
Source§impl Clone for GenerateContext
impl Clone for GenerateContext
Source§fn clone(&self) -> GenerateContext
fn clone(&self) -> GenerateContext
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GenerateContext
impl !RefUnwindSafe for GenerateContext
impl Send for GenerateContext
impl Sync for GenerateContext
impl Unpin for GenerateContext
impl !UnwindSafe for GenerateContext
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.