Skip to content

Commit b125bdd

Browse files
committed
feat(api): adding file purposes (openai#831)
1 parent 7196ac9 commit b125bdd

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 64
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-edb5af3ade0cd27cf366b0654b90c7a81c43c433e11fc3f6e621e2c779de10d4.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2e14236d4015bf3b956290ea8b656224a0c7b206a356c6af2a7ae43fdbceb04c.yml

src/resources/files.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,11 @@ export interface FileObject {
148148
object: 'file';
149149

150150
/**
151-
* The intended purpose of the file. Supported values are `fine-tune`,
152-
* `fine-tune-results`, `assistants`, and `assistants_output`.
151+
* The intended purpose of the file. Supported values are `assistants`,
152+
* `assistants_output`, `batch`, `batch_output`, `fine-tune`, and
153+
* `fine-tune-results`.
153154
*/
154-
purpose: 'fine-tune' | 'fine-tune-results' | 'assistants' | 'assistants_output';
155+
purpose: 'assistants' | 'assistants_output' | 'batch' | 'batch_output' | 'fine-tune' | 'fine-tune-results';
155156

156157
/**
157158
* @deprecated: Deprecated. The current status of the file, which can be either
@@ -175,14 +176,13 @@ export interface FileCreateParams {
175176
/**
176177
* The intended purpose of the uploaded file.
177178
*
178-
* Use "fine-tune" for
179-
* [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning) and
180-
* "assistants" for
179+
* Use "assistants" for
181180
* [Assistants](https://platform.openai.com/docs/api-reference/assistants) and
182-
* [Messages](https://platform.openai.com/docs/api-reference/messages). This allows
183-
* us to validate the format of the uploaded file is correct for fine-tuning.
181+
* [Messages](https://platform.openai.com/docs/api-reference/messages), "batch" for
182+
* [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for
183+
* [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning).
184184
*/
185-
purpose: 'fine-tune' | 'assistants';
185+
purpose: 'assistants' | 'batch' | 'fine-tune';
186186
}
187187

188188
export interface FileListParams {

tests/api-resources/files.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('resource files', () => {
1212
test('create: only required params', async () => {
1313
const responsePromise = openai.files.create({
1414
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
15-
purpose: 'fine-tune',
15+
purpose: 'assistants',
1616
});
1717
const rawResponse = await responsePromise.asResponse();
1818
expect(rawResponse).toBeInstanceOf(Response);
@@ -26,7 +26,7 @@ describe('resource files', () => {
2626
test('create: required and optional params', async () => {
2727
const response = await openai.files.create({
2828
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
29-
purpose: 'fine-tune',
29+
purpose: 'assistants',
3030
});
3131
});
3232

0 commit comments

Comments
 (0)