record(__FUNCTION__, $parameters); } public function list(): ListResponse { return $this->record(__FUNCTION__); } public function retrieve(string $fineTuneId): RetrieveResponse { return $this->record(__FUNCTION__, $fineTuneId); } public function cancel(string $fineTuneId): RetrieveResponse { return $this->record(__FUNCTION__, $fineTuneId); } public function listEvents(string $fineTuneId): ListEventsResponse { return $this->record(__FUNCTION__, $fineTuneId); } public function listEventsStreamed(string $fineTuneId): StreamResponse { return $this->record(__FUNCTION__, $fineTuneId); } }