LangChain - Output Parsers
In this code:
The age value is a string instead of a number. What will auto-fixing do?
output_parser = JsonOutputParser(auto_fix=True)
raw_output = '{"name": "Bob", "age": "twenty"}'
result = output_parser.parse(raw_output)The age value is a string instead of a number. What will auto-fixing do?
