pub struct ModelServer { /* private fields */ }Expand description
Model serving infrastructure
Implementations§
Source§impl ModelServer
impl ModelServer
Sourcepub fn new(registry: Arc<ModelRegistry>) -> Result<Self>
pub fn new(registry: Arc<ModelRegistry>) -> Result<Self>
Create a new model server backed by an on-disk artifact repository
rooted at registry’s storage path.
Sourcepub async fn load_model(&self, version_id: Uuid) -> Result<()>
pub async fn load_model(&self, version_id: Uuid) -> Result<()>
Load a model version into memory from the on-disk artifact repository.
Looks up the artifact previously saved under the key
version_id.to_string() and caches the reconstructed model for
subsequent get_model calls. Returns an error if no
artifact has been saved for this version yet.
Sourcepub async fn warm_up_model(
&self,
version_id: Uuid,
samples: Vec<String>,
) -> Result<()>
pub async fn warm_up_model( &self, version_id: Uuid, samples: Vec<String>, ) -> Result<()>
Warm up model with sample inputs.
If the model is already loaded, actually runs encode over the
samples once so its internal caches are genuinely primed; otherwise
the samples are recorded for a future load.
Sourcepub async fn get_model(
&self,
version_id: Uuid,
) -> Result<Arc<Box<dyn EmbeddingModel>>>
pub async fn get_model( &self, version_id: Uuid, ) -> Result<Arc<Box<dyn EmbeddingModel>>>
Get a previously loaded model for inference. Returns an error if
load_model has not been called successfully for
this version.
Sourcepub async fn route_request(&self, test_id: Uuid) -> Result<Uuid>
pub async fn route_request(&self, test_id: Uuid) -> Result<Uuid>
Route request based on A/B test
Auto Trait Implementations§
impl !Freeze for ModelServer
impl !RefUnwindSafe for ModelServer
impl !UnwindSafe for ModelServer
impl Send for ModelServer
impl Sync for ModelServer
impl Unpin for ModelServer
impl UnsafeUnpin for ModelServer
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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>
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>
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<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§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>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.Source§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>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.