mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-08-27 19:29:56 -04:00
1cd8996074
Co-authored-by: Tim Asp <707699+timothyasp@users.noreply.github.com>
8 lines
352 B
Python
8 lines
352 B
Python
"""Summarization checker chain for verifying accuracy of text generation.
|
|
|
|
Chain that tries to verify the accuracy of text generation by splitting it into a
|
|
list of facts, then checking if those facts are true or not, and rewriting
|
|
the text to make it more truth-ful. It will repeat this loop until it hits `max_tries`
|
|
or gets to a "true" output.
|
|
"""
|