openai_struct/models/
create_fine_tuning_job_request_wandb.rs

1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11/// pub CreateFineTuningJobRequestWandb : 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.
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct CreateFineTuningJobRequestWandb {
18    /// A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some default tags are generated by OpenAI: \"openai/finetune\", \"openai/{base-model}\", \"openai/{ftjob-abcdef}\".
19    #[serde(rename = "tags")]
20    pub tags: Option<Vec<String>>,
21    /// The entity to use for the run. This allows you to set the team or username of the WandB user that you would like associated with the run. If not set, the default entity for the registered WandB API key is used.
22    #[serde(rename = "entity")]
23    pub entity: Option<String>,
24    /// A display name to set for the run. If not set, we will use the Job ID as the name.
25    #[serde(rename = "name")]
26    pub name: Option<String>,
27    /// The name of the project that the new run will be created under.
28    #[serde(rename = "project")]
29    pub project: String,
30}