langchain.output_parsers.structured.ResponseSchema¶
- class langchain.output_parsers.structured.ResponseSchema(*, name: str, description: str, type: str = 'string')[source]¶
Bases:
BaseModelA schema for a response from a structured output parser.
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- param description: str [Required]¶
The description of the schema.
- param name: str [Required]¶
The name of the schema.
- param type: str = 'string'¶
The type of the response.