Addition of OutputParser for FewShotPromptTemplate

This commit is contained in:
vinodkiran
2023-10-25 19:52:50 +05:30
parent 4654f69951
commit b8b8f09bbc
2 changed files with 10 additions and 14 deletions
@@ -62,15 +62,15 @@ class StructuredOutputParser implements INode {
if (structure) {
try {
parsedStructure = JSON.parse(structure)
if (structureType === 'fromZodSchema') {
return LangchainStructuredOutputParser.fromZodSchema(parsedStructure)
} else {
return LangchainStructuredOutputParser.fromNamesAndDescriptions(parsedStructure)
}
} catch (exception) {
throw new Error('Invalid JSON in StructuredOutputParser: ' + exception)
}
}
if (structureType === 'fromZodSchema') {
return LangchainStructuredOutputParser.fromZodSchema(parsedStructure)
} else {
return LangchainStructuredOutputParser.fromNamesAndDescriptions(parsedStructure)
}
}
}