Class FineTuningJobCreateParams.Integration.Wandb.Builder
-
- All Implemented Interfaces:
public final class FineTuningJobCreateParams.Integration.Wandb.Builder
A builder for Wandb.
-
-
Method Summary
-
-
Method Detail
-
project
final FineTuningJobCreateParams.Integration.Wandb.Builder project(String project)
The name of the project that the new run will be created under.
-
project
final FineTuningJobCreateParams.Integration.Wandb.Builder project(JsonField<String> project)
The name of the project that the new run will be created under.
-
entity
final FineTuningJobCreateParams.Integration.Wandb.Builder entity(String entity)
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.
-
entity
final FineTuningJobCreateParams.Integration.Wandb.Builder entity(Optional<String> entity)
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.
-
entity
final FineTuningJobCreateParams.Integration.Wandb.Builder entity(JsonField<String> entity)
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.
-
name
final FineTuningJobCreateParams.Integration.Wandb.Builder name(String name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
name
final FineTuningJobCreateParams.Integration.Wandb.Builder name(Optional<String> name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
name
final FineTuningJobCreateParams.Integration.Wandb.Builder name(JsonField<String> name)
A display name to set for the run. If not set, we will use the Job ID as the name.
-
tags
final FineTuningJobCreateParams.Integration.Wandb.Builder tags(List<String> tags)
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}".
-
tags
final FineTuningJobCreateParams.Integration.Wandb.Builder tags(JsonField<List<String>> tags)
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}".
-
addTag
final FineTuningJobCreateParams.Integration.Wandb.Builder addTag(String tag)
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}".
-
additionalProperties
final FineTuningJobCreateParams.Integration.Wandb.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FineTuningJobCreateParams.Integration.Wandb.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FineTuningJobCreateParams.Integration.Wandb.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FineTuningJobCreateParams.Integration.Wandb.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FineTuningJobCreateParams.Integration.Wandb.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FineTuningJobCreateParams.Integration.Wandb build()
-
-
-
-