Skip to content

Commit afe0b7c

Browse files
authored
Merge pull request #239 from openai/dev/ryanliu/remove_vector_store_bytes_field
remove vector store bytes field
2 parents b3f0c9d + c17c479 commit afe0b7c

File tree

1 file changed

+18
-26
lines changed

1 file changed

+18
-26
lines changed

openapi.yaml

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5947,7 +5947,7 @@ paths:
59475947
name: List vector store files
59485948
group: vector_stores
59495949
beta: true
5950-
returns: A list of [vector store file](/docs/api-reference/vector-stores/file-object) objects.
5950+
returns: A list of [vector store file](/docs/api-reference/vector-stores-files/file-object) objects.
59515951
examples:
59525952
request:
59535953
curl: |
@@ -6027,7 +6027,7 @@ paths:
60276027
name: Create vector store file
60286028
group: vector_stores
60296029
beta: true
6030-
returns: A [vector store file](/docs/api-reference/vector-stores/file-object) object.
6030+
returns: A [vector store file](/docs/api-reference/vector-stores-files/file-object) object.
60316031
examples:
60326032
request:
60336033
curl: |
@@ -6105,7 +6105,7 @@ paths:
61056105
name: Retrieve vector store file
61066106
group: vector_stores
61076107
beta: true
6108-
returns: The [vector store file](/docs/api-reference/vector-stores/file-object) object.
6108+
returns: The [vector store file](/docs/api-reference/vector-stores-files/file-object) object.
61096109
examples:
61106110
request:
61116111
curl: |
@@ -6243,7 +6243,7 @@ paths:
62436243
name: Create vector store file batch
62446244
group: vector_stores
62456245
beta: true
6246-
returns: A [vector store file batch](/docs/api-reference/vector-stores/batch-object) object.
6246+
returns: A [vector store file batch](/docs/api-reference/vector-stores-file-batches/batch-object) object.
62476247
examples:
62486248
request:
62496249
curl: |
@@ -6326,7 +6326,7 @@ paths:
63266326
name: Retrieve vector store file batch
63276327
group: vector_stores
63286328
beta: true
6329-
returns: The [vector store file batch](/docs/api-reference/vector-stores/batch-object) object.
6329+
returns: The [vector store file batch](/docs/api-reference/vector-stores-file-batches/batch-object) object.
63306330
examples:
63316331
request:
63326332
curl: |
@@ -6509,7 +6509,7 @@ paths:
65096509
name: List vector store files in a batch
65106510
group: vector_stores
65116511
beta: true
6512-
returns: A list of [vector store file](/docs/api-reference/vector-stores/file-object) objects.
6512+
returns: A list of [vector store file](/docs/api-reference/vector-stores-files/file-object) objects.
65136513
examples:
65146514
request:
65156515
curl: |
@@ -11907,7 +11907,6 @@ components:
1190711907
- status
1190811908
- last_active_at
1190911909
- name
11910-
- bytes
1191111910
- file_counts
1191211911
- metadata
1191311912
x-oaiMeta:
@@ -11921,7 +11920,6 @@ components:
1192111920
"usage_bytes": 123456,
1192211921
"last_active_at": 1698107661,
1192311922
"name": "my_vector_store",
11924-
"bytes": 123456,
1192511923
"status": "completed",
1192611924
"file_counts": {
1192711925
"in_progress": 0,
@@ -12640,40 +12638,31 @@ components:
1264012638
type: string
1264112639
description: The ID of the file containing the outputs of requests with errors.
1264212640
created_at:
12643-
type: string
12644-
format: integer
12641+
type: integer
1264512642
description: The Unix timestamp (in seconds) for when the batch was created.
1264612643
in_progress_at:
12647-
type: string
12648-
format: integer
12644+
type: integer
1264912645
description: The Unix timestamp (in seconds) for when the batch started processing.
1265012646
expires_at:
12651-
type: string
12652-
format: integer
12647+
type: integer
1265312648
description: The Unix timestamp (in seconds) for when the batch will expire.
1265412649
finalizing_at:
12655-
type: string
12656-
format: integer
12650+
type: integer
1265712651
description: The Unix timestamp (in seconds) for when the batch started finalizing.
1265812652
completed_at:
12659-
type: string
12660-
format: integer
12653+
type: integer
1266112654
description: The Unix timestamp (in seconds) for when the batch was completed.
1266212655
failed_at:
12663-
type: string
12664-
format: integer
12656+
type: integer
1266512657
description: The Unix timestamp (in seconds) for when the batch failed.
1266612658
expired_at:
12667-
type: string
12668-
format: integer
12659+
type: integer
1266912660
description: The Unix timestamp (in seconds) for when the batch expired.
1267012661
cancelling_at:
12671-
type: string
12672-
format: integer
12662+
type: integer
1267312663
description: The Unix timestamp (in seconds) for when the batch started cancelling.
1267412664
cancelled_at:
12675-
type: string
12676-
format: integer
12665+
type: integer
1267712666
description: The Unix timestamp (in seconds) for when the batch was cancelled.
1267812667
request_counts:
1267912668
type: object
@@ -13183,6 +13172,9 @@ x-oaiMeta:
1318313172
- type: endpoint
1318413173
key: listVectorStoreFiles
1318513174
path: listFiles
13175+
- type: endpoint
13176+
key: getVectorStoreFile
13177+
path: getFile
1318613178
- type: endpoint
1318713179
key: deleteVectorStoreFile
1318813180
path: deleteFile

0 commit comments

Comments
 (0)