langchain.js
    Preparing search index...

    Type Alias OpenAPIChainOptions

    Type representing the options for creating an OpenAPI chain.

    type OpenAPIChainOptions = {
        headers?: Record<string, string>;
        llm?: BaseMessage<BaseMessage>;
        llmChainInputs?: LLMChainInput;
        params?: Record<string, string>;
        prompt?: BaseMessage;
        requestChain?: BaseChain;
        verbose?: boolean;
    }
    Index

    Properties

    headers?: Record<string, string>
    llmChainInputs?: LLMChainInput
    params?: Record<string, string>
    prompt?: BaseMessage
    requestChain?: BaseChain
    verbose?: boolean