You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(README.md): add documentation for vector stores, vector store files, and vector store file batches to provide information on how to manage and interact with vector stores in the API
feat(README.md): add support for file search tool in the assistant by including it as a tool resource in the assistant creation request
Given a `file_batch_id` you can `retrieve` the current field values:
779
+
780
+
```ruby
781
+
client.vector_store_file_batches.retrieve(
782
+
vector_store_id:"vector-store-abc123",
783
+
id: file_batch_id
784
+
)
785
+
```
786
+
787
+
You can get a `list` of all vector store files in a batch currently available under the vector store:
788
+
789
+
```ruby
790
+
client.vector_store_file_batches.list(
791
+
vector_store_id:"vector-store-abc123",
792
+
id: file_batch_id
793
+
)
794
+
```
795
+
796
+
You can cancel a vector store file batch (This attempts to cancel the processing of files in this batch as soon as possible):
797
+
798
+
```ruby
799
+
client.vector_store_file_batches.cancel(
800
+
vector_store_id:"vector-store-abc123",
801
+
id: file_batch_id
802
+
)
803
+
```
804
+
658
805
### Assistants
659
806
660
807
Assistants are stateful actors that can have many conversations and use tools to perform tasks (see [Assistant Overview](https://platform.openai.com/docs/assistants/overview)).
0 commit comments