관리-도구
편집 파일: ThreadsRunsStepsTestResource.php
<?php namespace OpenAI\Testing\Resources; use OpenAI\Contracts\Resources\ThreadsRunsStepsContract; use OpenAI\Resources\ThreadsRunsSteps; use OpenAI\Responses\Threads\Runs\Steps\ThreadRunStepListResponse; use OpenAI\Responses\Threads\Runs\Steps\ThreadRunStepResponse; use OpenAI\Testing\Resources\Concerns\Testable; class ThreadsRunsStepsTestResource implements ThreadsRunsStepsContract { use Testable; public function resource(): string { return ThreadsRunsSteps::class; } public function retrieve(string $threadId, string $runId, string $stepId): ThreadRunStepResponse { return $this->record(__FUNCTION__, func_get_args()); } public function list(string $threadId, string $runId, array $parameters = []): ThreadRunStepListResponse { return $this->record(__FUNCTION__, func_get_args()); } }