Table of Contents

Class BatchRequestInput

The per-line object of the batch input file

public class BatchRequestInput
Inheritance
object
BatchRequestInput

Properties

CustomId

A developer-provided per-request id that will be used to match outputs to inputs. Must be unique for each request in a batch.

public string CustomId { get; set; }

Property Value

string

Method

The HTTP method to be used for the request. Currently only POST is supported.

public string Method { get; set; }

Property Value

string

Url

The OpenAI API relative URL to be used for the request. Currently, /v1/chat/completions, /v1/embeddings, and /v1/completions are supported.

public string Url { get; set; }

Property Value

string