langchain.js
    Preparing search index...

    Interface for the input parameters specific to the Fake List Chat model.

    interface FakeChatInput {
        cache?: boolean | BaseCache<Generation[]>;
        callbackManager?: CallbackManager;
        callbacks?: Callbacks;
        disableStreaming?: boolean;
        emitCustomEvent?: boolean;
        maxConcurrency?: number;
        maxRetries?: number;
        metadata?: Record<string, unknown>;
        onFailedAttempt?: FailedAttemptHandler;
        outputVersion?: "v1" | "v0";
        responses: string[];
        sleep?: number;
        tags?: string[];
        verbose?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cache?: boolean | BaseCache<Generation[]>
    callbackManager?: CallbackManager

    Use callbacks instead

    callbacks?: Callbacks
    disableStreaming?: boolean

    Whether to disable streaming.

    If streaming is bypassed, then stream() will defer to invoke().

    • If true, will always bypass streaming case.
    • If false (default), will always use streaming case if available.
    emitCustomEvent?: boolean
    maxConcurrency?: number

    The maximum number of concurrent calls that can be made. Defaults to Infinity, which means no limit.

    maxRetries?: number

    The maximum number of retries that can be made for a single call, with an exponential backoff between each attempt. Defaults to 6.

    metadata?: Record<string, unknown>
    onFailedAttempt?: FailedAttemptHandler

    Custom handler to handle failed attempts. Takes the originally thrown error object as input, and should itself throw an error if the input error is not retryable.

    outputVersion?: "v1" | "v0"

    Version of AIMessage output format to store in message content.

    AIMessage.contentBlocks will lazily parse the contents of content into a standard format. This flag can be used to additionally store the standard format as the message content, e.g., for serialization purposes.

    • "v0": provider-specific format in content (can lazily parse with .contentBlocks)
    • "v1": standardized format in content (consistent with .contentBlocks)

    You can also set LC_OUTPUT_VERSION as an environment variable to "v1" to enable this by default.

    "v0"
    
    responses: string[]

    Responses to return

    sleep?: number

    Time to sleep in milliseconds between responses

    tags?: string[]
    verbose?: boolean