AI Dev Kit
Search Results for

    Show / Hide Table of Contents

    Class BatchRequestInput

    The per-line object of the batch input file

    Inheritance
    object
    BatchRequestInput
    Namespace: Glitch9.AIDevKit.OpenAI
    Assembly: .dll
    Syntax
    public class 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.

    Declaration
    public string CustomId { get; set; }
    Property Value
    Type Description
    string

    Method

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

    Declaration
    public string Method { get; set; }
    Property Value
    Type Description
    string

    Url

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

    Declaration
    public string Url { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX