pub struct CreateFineTuningJobRequestIntegration {
pub type: CreateFineTuningJobRequestIntegrationType,
pub wandb: CreateFineTuningJobRequestIntegrationWandb,
}
Fields§
§type: CreateFineTuningJobRequestIntegrationType
The type of integration to enable. Currently, only “wandb” (Weights and Biases) is supported.
wandb: CreateFineTuningJobRequestIntegrationWandb
The settings for your integration with Weights and Biases. This payload specifies the project that metrics will be sent to. Optionally, you can set an explicit display name for your run, add tags to your run, and set a default entity (team, username, etc) to be associated with your run.
Implementations§
Source§impl CreateFineTuningJobRequestIntegration
impl CreateFineTuningJobRequestIntegration
Sourcepub fn builder() -> CreateFineTuningJobRequestIntegrationBuilder<((), ())>
pub fn builder() -> CreateFineTuningJobRequestIntegrationBuilder<((), ())>
Create a builder for building CreateFineTuningJobRequestIntegration
.
On the builder, call .r#type(...)
, .wandb(...)
to set the values of the fields.
Finally, call .build()
to create the instance of CreateFineTuningJobRequestIntegration
.
Trait Implementations§
Source§impl Clone for CreateFineTuningJobRequestIntegration
impl Clone for CreateFineTuningJobRequestIntegration
Source§fn clone(&self) -> CreateFineTuningJobRequestIntegration
fn clone(&self) -> CreateFineTuningJobRequestIntegration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for CreateFineTuningJobRequestIntegration
impl<'de> Deserialize<'de> for CreateFineTuningJobRequestIntegration
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 CreateFineTuningJobRequestIntegration
impl PartialEq for CreateFineTuningJobRequestIntegration
Source§fn eq(&self, other: &CreateFineTuningJobRequestIntegration) -> bool
fn eq(&self, other: &CreateFineTuningJobRequestIntegration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateFineTuningJobRequestIntegration
Auto Trait Implementations§
impl Freeze for CreateFineTuningJobRequestIntegration
impl RefUnwindSafe for CreateFineTuningJobRequestIntegration
impl Send for CreateFineTuningJobRequestIntegration
impl Sync for CreateFineTuningJobRequestIntegration
impl Unpin for CreateFineTuningJobRequestIntegration
impl UnwindSafe for CreateFineTuningJobRequestIntegration
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