File tree 1 file changed +0
-45
lines changed
1 file changed +0
-45
lines changed Original file line number Diff line number Diff line change 4
4
5
5
namespace OpenAI \Resources ;
6
6
7
- use Exception ;
8
7
use OpenAI \ValueObjects \Transporter \Payload ;
9
8
10
9
final class Files
@@ -27,48 +26,4 @@ public function list(): array
27
26
28
27
return $ result ;
29
28
}
30
-
31
- /**
32
- * Upload a file that contains document(s) to be used across various endpoints/features.
33
- *
34
- * @see https://beta.openai.com/docs/api-reference/files/upload
35
- *
36
- * @param array<string, mixed> $parameters
37
- */
38
- public function upload (array $ parameters ): never
39
- {
40
- throw new Exception ('Not implemented yet. ' );
41
- }
42
-
43
- /**
44
- * Delete a file.
45
- *
46
- * @see https://beta.openai.com/docs/api-reference/files/delete
47
- */
48
- public function delete (string $ file ): never
49
- {
50
- throw new Exception ('Not implemented yet. ' );
51
- }
52
-
53
- /**
54
- * Returns information about a specific file.
55
- *
56
- * @see https://beta.openai.com/docs/api-reference/files/retrieve
57
- *
58
- * @return array<string, mixed>
59
- */
60
- public function retrieve (string $ file ): never
61
- {
62
- throw new Exception ('Not implemented yet. ' );
63
- }
64
-
65
- /**
66
- * Returns the contents of the specified file
67
- *
68
- * @see https://beta.openai.com/docs/api-reference/files/retrieve-content
69
- */
70
- public function download (string $ file ): never
71
- {
72
- throw new Exception ('Not implemented yet. ' );
73
- }
74
29
}
You can’t perform that action at this time.
0 commit comments