langchain.chains.openai_functions.extraction.create_extraction_chain¶

langchain.chains.openai_functions.extraction.create_extraction_chain(schema: dict, llm: BaseLanguageModel, verbose: bool = False) Chain[source]¶

Creates a chain that extracts information from a passage.

Parameters
  • schema – The schema of the entities to extract.

  • llm – The language model to use.

  • verbose – Whether to run in verbose mode. In verbose mode, some intermediate logs will be printed to the console. Defaults to langchain.verbose value.

Returns

Chain that can be used to extract information from a passage.

Examples using create_extraction_chain¶