ResponseSchema#

class langchain.output_parsers.structured.ResponseSchema[source]#

Bases: BaseModel

Schema for a response from a structured output parser.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

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.