LangChain - Output Parsers
You wrote this code:
Why does this code cause an error?
output_parser = StructuredOutputParser.from_format('json')
response = '{name: Alice, age: 30}'
parsed = output_parser.parse(response)Why does this code cause an error?
