pub enum ArchScope {
TextGeneration,
DeferredEncoderEmbedding,
DeferredMultimodal,
DeferredDiffusion,
DeferredAudio,
EnumOnly,
}Expand description
How far this architecture is in Ferrox’s delivery scope (plan: text-generation parity; encoder/multimodal/diffusion/audio deferred).
Variants§
TextGeneration
Autoregressive / encoder-decoder text generation — in scope.
DeferredEncoderEmbedding
Encoder / embedding / pooling models — deferred.
DeferredMultimodal
Vision / multimodal projector paths — deferred.
DeferredDiffusion
Diffusion / masked-LM samplers — deferred.
DeferredAudio
Audio tokenizers / codecs — deferred.
EnumOnly
Enum present in llama.cpp but not a real serve target here.
Trait Implementations§
impl Copy for ArchScope
impl Eq for ArchScope
impl StructuralPartialEq for ArchScope
Auto Trait Implementations§
impl Freeze for ArchScope
impl RefUnwindSafe for ArchScope
impl Send for ArchScope
impl Sync for ArchScope
impl Unpin for ArchScope
impl UnsafeUnpin for ArchScope
impl UnwindSafe for ArchScope
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> 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 more