Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 3.61 KB

listvectorstorefilesresponse.md

File metadata and controls

38 lines (33 loc) · 3.61 KB

ListVectorStoreFilesResponse

Example Usage

import { ListVectorStoreFilesResponse } from "argot-open-ai/models/components";

let value: ListVectorStoreFilesResponse = {
  object: "list",
  data: [
    {
      id: "<id>",
      object: "vector_store.file",
      usageBytes: 886961,
      createdAt: 618826,
      vectorStoreId: "<id>",
      status: "in_progress",
      lastError: {
        code: "invalid_file",
        message: "<value>",
      },
    },
  ],
  firstId: "file-abc123",
  lastId: "file-abc456",
  hasMore: false,
};

Fields

Field Type Required Description Example
object string ✔️ N/A list
data components.VectorStoreFileObject[] ✔️ N/A
firstId string ✔️ N/A file-abc123
lastId string ✔️ N/A file-abc456
hasMore boolean ✔️ N/A false