LangChain - Output Parsers
Identify the error in this code using
CommaSeparatedListOutputParser:
from langchain.output_parsers import CommaSeparatedListOutputParser parser = CommaSeparatedListOutputParser text = 'one, two, three' result = parser.parse(text) print(result)
