LangChain - Output Parsers
Given the following code snippet, what will be the output?
from langchain.output_parsers import CommaSeparatedListOutputParser parser = CommaSeparatedListOutputParser() text = 'apple, banana , cherry, date' result = parser.parse(text) print(result)
