LangChain - Output Parsers
Given this Langchain code snippet:
What will be printed?
output_parser = JsonOutputParser(auto_fix=True)
raw_output = '{"name": "Alice", "age": 30' # missing closing brace
fixed_output = output_parser.parse(raw_output)
print(fixed_output)What will be printed?
