We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34518c4 commit 905f2f7Copy full SHA for 905f2f7
src/openai/cli/_api/fine_tuning/jobs.py
@@ -136,7 +136,7 @@ class CLIFineTuningJobsListEventsArgs(BaseModel):
136
class CLIFineTuningJobs:
137
@staticmethod
138
def create(args: CLIFineTuningJobsCreateArgs) -> None:
139
- hyperparameters = json.loads(args.hyperparameters) if args.hyperparameters is not NOT_GIVEN else NOT_GIVEN
+ hyperparameters = json.loads(str(args.hyperparameters)) if args.hyperparameters is not NOT_GIVEN else NOT_GIVEN
140
fine_tuning_job: FineTuningJob = get_client().fine_tuning.jobs.create(
141
model=args.model,
142
training_file=args.training_file,
0 commit comments