langchain.js
    Preparing search index...

    Type Alias RouterOutputSchema

    A type that represents the output schema of a router chain. It defines the structure of the output data returned by the router chain.

    type RouterOutputSchema = {
        destination: string;
        next_inputs: { [key: string]: string };
    }
    Index

    Properties

    destination: string
    next_inputs: { [key: string]: string }