Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 3.73 KB

listbatchesresponse.md

File metadata and controls

35 lines (30 loc) · 3.73 KB

ListBatchesResponse

Example Usage

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

let value: ListBatchesResponse = {
  data: [
    {
      id: "<id>",
      object: "batch",
      endpoint: "<value>",
      inputFileId: "<id>",
      completionWindow: "<value>",
      status: "cancelled",
      createdAt: 362189,
    },
  ],
  firstId: "batch_abc123",
  lastId: "batch_abc456",
  hasMore: false,
  object: "list",
};

Fields

Field Type Required Description Example
data components.Batch[] ✔️ N/A
firstId string N/A batch_abc123
lastId string N/A batch_abc456
hasMore boolean ✔️ N/A
object components.ListBatchesResponseObject ✔️ N/A