Skip to content

Commit

Permalink
Merge pull request #496 from TechIns-Software/main
Browse files Browse the repository at this point in the history
Hotfixing missing array keys
  • Loading branch information
gehrisandro authored Nov 12, 2024
2 parents cab6bbe + 984851c commit 88ec346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Responses/FineTuning/RetrieveJobResponseError.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']??"",
);
}

Expand Down

0 comments on commit 88ec346

Please sign in to comment.