LangChain - Output Parsers
Given this LangChain code snippet:
What will be printed?
output_parser = StructuredOutputParser.from_format('name age ')
response = '{"name": "Alice", "age": 30}'
parsed = output_parser.parse(response)
print(parsed['age'])What will be printed?
