관리-도구
편집 파일: VectorStoresFileBatchesTestResource.php
<?php namespace OpenAI\Testing\Resources; use OpenAI\Contracts\Resources\VectorStoresFileBatchesContract; use OpenAI\Resources\VectorStoresFileBatches; use OpenAI\Responses\VectorStores\FileBatches\VectorStoreFileBatchResponse; use OpenAI\Responses\VectorStores\Files\VectorStoreFileListResponse; use OpenAI\Testing\Resources\Concerns\Testable; final class VectorStoresFileBatchesTestResource implements VectorStoresFileBatchesContract { use Testable; public function resource(): string { return VectorStoresFileBatches::class; } public function retrieve(string $vectorStoreId, string $fileBatchId): VectorStoreFileBatchResponse { return $this->record(__FUNCTION__, func_get_args()); } public function cancel(string $vectorStoreId, string $fileBatchId): VectorStoreFileBatchResponse { return $this->record(__FUNCTION__, func_get_args()); } public function create(string $vectorStoreId, array $parameters): VectorStoreFileBatchResponse { return $this->record(__FUNCTION__, func_get_args()); } public function listFiles(string $vectorStoreId, string $fileBatchId, array $parameters = []): VectorStoreFileListResponse { return $this->record(__FUNCTION__, func_get_args()); } }