관리-도구
편집 파일: ThreadsRunsStepsContract.php
<?php namespace OpenAI\Contracts\Resources; use OpenAI\Responses\Threads\Runs\Steps\ThreadRunStepListResponse; use OpenAI\Responses\Threads\Runs\Steps\ThreadRunStepResponse; interface ThreadsRunsStepsContract { /** * Retrieves a run step. * * @see https://platform.openai.com/docs/api-reference/runs/getRunStep */ public function retrieve(string $threadId, string $runId, string $stepId): ThreadRunStepResponse; /** * Returns a list of run steps belonging to a run. * * @see https://platform.openai.com/docs/api-reference/runs/listRunSteps * * @param array<string, mixed> $parameters */ public function list(string $threadId, string $runId, array $parameters = []): ThreadRunStepListResponse; }