agsamantha/node_modules/langchain/dist/output_parsers/router.cjs

48 lines
1.8 KiB
JavaScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RouterOutputParser = void 0;
const output_parsers_1 = require("@langchain/core/output_parsers");
const structured_js_1 = require("./structured.cjs");
/**
* A type of output parser that extends the
* JsonMarkdownStructuredOutputParser. It is used to parse the output of a
* router in LangChain. The class takes a schema and an optional
* RouterOutputParserInput object as parameters.
*/
class RouterOutputParser extends structured_js_1.JsonMarkdownStructuredOutputParser {
constructor(schema, options) {
super(schema);
Object.defineProperty(this, "defaultDestination", {
enumerable: true,
configurable: true,
writable: true,
value: "DEFAULT"
});
this.defaultDestination =
options?.defaultDestination ?? this.defaultDestination;
}
/**
* Overrides the parse method from JsonMarkdownStructuredOutputParser.
* This method takes a string as input, attempts to parse it, and returns
* the parsed text. If the destination of the parsed text matches the
* defaultDestination, the destination is set to null. If the parsing
* fails, an OutputParserException is thrown.
* @param text The text to be parsed.
* @returns The parsed text as a Promise.
*/
async parse(text) {
try {
const parsedText = await super.parse(text);
if (parsedText.destination?.toLowerCase() ===
this.defaultDestination.toLowerCase()) {
parsedText.destination = null;
}
return parsedText;
}
catch (e) {
throw new output_parsers_1.OutputParserException(`Failed to parse. Text: "${text}". Error: ${e}`, text);
}
}
}
exports.RouterOutputParser = RouterOutputParser;