Class HttpResponseOutputParser

OutputParser that formats chunks emitted from an LLM for different HTTP content types.

Hierarchy

Constructors

Properties

contentType: "text/plain" | "text/event-stream" = "text/plain"
outputParser: BaseTransformOutputParser<unknown> = ...

Methods

  • Calls the parser with a given input and optional configuration options. If the input is a string, it creates a generation with the input as text and calls parseResult. If the input is a BaseMessage, it creates a generation with the input as a message and the content of the input as text, and then calls parseResult.

    Parameters

    • input: string | BaseMessage

      The input to the parser, which can be a string or a BaseMessage.

    • Optional options: BaseCallbackConfig

      Optional configuration options.

    Returns Promise<Uint8Array>

    A promise of the parsed output.

  • Parses a string output from an LLM call. This method is meant to be implemented by subclasses to define how a string output from an LLM should be parsed.

    Parameters

    • text: string

      The string output from an LLM call.

    Returns Promise<Uint8Array>

    A promise of the parsed output.

  • Stream all output from a runnable, as reported to the callback system. This includes all inner runs of LLMs, Retrievers, Tools, etc. Output is streamed as Log objects, which include a list of jsonpatch ops that describe how the state of the run has changed in each step, and the final state of the run. The jsonpatch ops can be applied in order to construct state.

    Parameters

    • input: string | BaseMessage
    • Optional options: Partial<BaseCallbackConfig>
    • Optional streamOptions: Omit<LogStreamCallbackHandlerInput, "autoClose">

    Returns AsyncGenerator<RunLogPatch, any, unknown>

  • Transforms an asynchronous generator of input into an asynchronous generator of parsed output.

    Parameters

    • inputGenerator: AsyncGenerator<string | BaseMessage, any, unknown>

      An asynchronous generator of input.

    • options: BaseCallbackConfig

      A configuration object.

    Returns AsyncGenerator<Uint8Array, any, unknown>

    An asynchronous generator of parsed output.

Generated using TypeDoc