pub struct ModelEndpointsArchitecture {
pub tokenizer: Option<String>,
pub instruct_type: Option<String>,
pub input_modalities: Vec<String>,
pub output_modalities: Vec<String>,
}Expand description
Architecture summary specific to the endpoints listing.
Fields§
§tokenizer: Option<String>Tokenizer name.
instruct_type: Option<String>Instruction-tuning family.
input_modalities: Vec<String>Input modalities.
output_modalities: Vec<String>Output modalities.
Trait Implementations§
Source§impl Clone for ModelEndpointsArchitecture
impl Clone for ModelEndpointsArchitecture
Source§fn clone(&self) -> ModelEndpointsArchitecture
fn clone(&self) -> ModelEndpointsArchitecture
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 ModelEndpointsArchitecture
impl Debug for ModelEndpointsArchitecture
Source§impl Default for ModelEndpointsArchitecture
impl Default for ModelEndpointsArchitecture
Source§fn default() -> ModelEndpointsArchitecture
fn default() -> ModelEndpointsArchitecture
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelEndpointsArchitecture
impl<'de> Deserialize<'de> for ModelEndpointsArchitecture
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
impl StructuralPartialEq for ModelEndpointsArchitecture
Auto Trait Implementations§
impl Freeze for ModelEndpointsArchitecture
impl RefUnwindSafe for ModelEndpointsArchitecture
impl Send for ModelEndpointsArchitecture
impl Sync for ModelEndpointsArchitecture
impl Unpin for ModelEndpointsArchitecture
impl UnsafeUnpin for ModelEndpointsArchitecture
impl UnwindSafe for ModelEndpointsArchitecture
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