pub struct FineTuneListEntry {
pub id: String,
pub object: String,
pub model: String,
pub created_at: i64,
pub fine_tuned_model: Option<String>,
pub hyperparams: Hyperparams,
pub organization_id: String,
pub result_files: Vec<FineTuneFileInfo>,
pub status: String,
pub validation_files: Vec<FineTuneFileInfo>,
pub training_files: Vec<FineTuneFileInfo>,
pub updated_at: i64,
}
Fields§
§id: String
§object: String
§model: String
§created_at: i64
§fine_tuned_model: Option<String>
§hyperparams: Hyperparams
§organization_id: String
§result_files: Vec<FineTuneFileInfo>
§status: String
§validation_files: Vec<FineTuneFileInfo>
§training_files: Vec<FineTuneFileInfo>
§updated_at: i64
Trait Implementations§
Source§impl Clone for FineTuneListEntry
impl Clone for FineTuneListEntry
Source§fn clone(&self) -> FineTuneListEntry
fn clone(&self) -> FineTuneListEntry
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 moreSource§impl Debug for FineTuneListEntry
impl Debug for FineTuneListEntry
Source§impl<'de> Deserialize<'de> for FineTuneListEntry
impl<'de> Deserialize<'de> for FineTuneListEntry
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 From<FineTuneListEntry> for FineTuneCancelRequest
impl From<FineTuneListEntry> for FineTuneCancelRequest
Source§fn from(value: FineTuneListEntry) -> Self
fn from(value: FineTuneListEntry) -> Self
Converts to this type from the input type.
Source§impl From<FineTuneListEntry> for FineTuneEventsGetRequest
impl From<FineTuneListEntry> for FineTuneEventsGetRequest
Source§fn from(value: FineTuneListEntry) -> Self
fn from(value: FineTuneListEntry) -> Self
Converts to this type from the input type.
Source§impl From<FineTuneListEntry> for FineTuneGetRequest
impl From<FineTuneListEntry> for FineTuneGetRequest
Source§fn from(value: FineTuneListEntry) -> Self
fn from(value: FineTuneListEntry) -> Self
Converts to this type from the input type.
Source§impl Serialize for FineTuneListEntry
impl Serialize for FineTuneListEntry
Source§impl TryFrom<FineTuneListEntry> for ModelDeleteRequest
impl TryFrom<FineTuneListEntry> for ModelDeleteRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<FineTuneListEntry> for ModelRequest
impl TryFrom<FineTuneListEntry> for ModelRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FineTuneListEntry
impl RefUnwindSafe for FineTuneListEntry
impl Send for FineTuneListEntry
impl Sync for FineTuneListEntry
impl Unpin for FineTuneListEntry
impl UnwindSafe for FineTuneListEntry
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