@accordkit/provider-openai - v0.2.0
    Preparing search index...

    Interface ResolvedOpenAIOptions

    Fully resolved configuration with defaults applied. Keeping this separate from the public interface simplifies option handling and provides a single source of truth for downstream helpers that expect booleans.

    interface ResolvedOpenAIOptions {
        enableResponsesApi: boolean;
        enableImagesApi: boolean;
        enableAudioApi: boolean;
        provider: Provider;
        operationName: string;
        emitPrompts: boolean;
        emitResponses: boolean;
        emitToolCalls: boolean;
        emitUsage: boolean;
        emitToolResults: boolean;
        emitSpan: boolean;
    }
    Index

    Properties

    enableResponsesApi: boolean
    enableImagesApi: boolean
    enableAudioApi: boolean
    provider: Provider
    operationName: string
    emitPrompts: boolean
    emitResponses: boolean
    emitToolCalls: boolean
    emitUsage: boolean
    emitToolResults: boolean
    emitSpan: boolean