diff --git a/src/Responses/FineTuning/RetrieveJobResponseError.php b/src/Responses/FineTuning/RetrieveJobResponseError.php index 239f9f7c..e1ff2ef1 100644 --- a/src/Responses/FineTuning/RetrieveJobResponseError.php +++ b/src/Responses/FineTuning/RetrieveJobResponseError.php @@ -31,9 +31,9 @@ private function __construct( public static function from(array $attributes): ?self { return new self( - $attributes['code'], - $attributes['param'], - $attributes['message'], + $attributes['code']??"", + $attributes['param']??null, + $attributes['message']??"", ); }