interface ChatOpenAICallOptions {
    options?: OpenAIClientOptions;
    promptIndex?: number;
    response_format?: ChatCompletionsTextResponseFormat | ChatCompletionsJsonResponseFormat;
    seed?: number;
    tool_choice?: "auto" | "none" | ChatCompletionsNamedFunctionToolSelection;
    tools?: ChatCompletionsFunctionToolDefinition[];
}

Hierarchy (view full)

Properties

options?: OpenAIClientOptions

Additional options to pass to the underlying axios request.

promptIndex?: number
response_format?: ChatCompletionsTextResponseFormat | ChatCompletionsJsonResponseFormat
seed?: number
tool_choice?: "auto" | "none" | ChatCompletionsNamedFunctionToolSelection
tools?: ChatCompletionsFunctionToolDefinition[]

Generated using TypeDoc