pub enum LocalJobKind {
OntologyCatalogImport {
ontology_id: String,
},
OntologyUriImport {
uri: String,
ontology_id: Option<String>,
domain: Option<String>,
title: Option<String>,
},
BundledOntologySeed {
ontology_id: Option<String>,
},
WorkbenchDaemonSync,
DaemonGraphReload,
ModelDownload {
url: String,
filename: String,
model_id: String,
},
ModelActivation {
model_name: String,
},
AnatomyAssetAcquire {
model: String,
},
AgentTurn {
session_id: String,
agent_slug: Option<String>,
agent_updated_at_unix: Option<u64>,
prompt: String,
},
}Variants§
OntologyCatalogImport
OntologyUriImport
BundledOntologySeed
WorkbenchDaemonSync
DaemonGraphReload
ModelDownload
Download a local inference model into the configured model store.
ModelActivation
Validate, index, memory-map, and activate a GGUF/P64 model.
AnatomyAssetAcquire
Download public reference GLBs and compile them into the local anatomy .10d cache.
AgentTurn
Run one agent turn as a background job — the native agent processes it locally, or (when the chosen agent’s backend is remote-MCP) routes it out over MCP. Curated from chat by the person (or, with confirmation, by their agent). Runs off the chat thread; the reply lands in the session.
Implementations§
Source§impl LocalJobKind
impl LocalJobKind
pub fn is_ontology_work(&self) -> bool
Trait Implementations§
Source§impl Clone for LocalJobKind
impl Clone for LocalJobKind
Source§fn clone(&self) -> LocalJobKind
fn clone(&self) -> LocalJobKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocalJobKind
impl Debug for LocalJobKind
Source§impl<'de> Deserialize<'de> for LocalJobKind
impl<'de> Deserialize<'de> for LocalJobKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LocalJobKind
impl PartialEq for LocalJobKind
Source§fn eq(&self, other: &LocalJobKind) -> bool
fn eq(&self, other: &LocalJobKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalJobKind
impl Serialize for LocalJobKind
impl Eq for LocalJobKind
impl StructuralPartialEq for LocalJobKind
Auto Trait Implementations§
impl Freeze for LocalJobKind
impl RefUnwindSafe for LocalJobKind
impl Send for LocalJobKind
impl Sync for LocalJobKind
impl Unpin for LocalJobKind
impl UnsafeUnpin for LocalJobKind
impl UnwindSafe for LocalJobKind
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more