langchain/libs/experimental/langchain_experimental/tot/__init__.py
Leonid Ganeline 3f6bf852ea
experimental: docstrings update (#18048)
Added missed docstrings. Formatted docsctrings to the consistent format.
2024-02-23 21:24:16 -05:00

14 lines
420 B
Python

"""Implementation of a Tree of Thought (ToT) chain based on the paper
"Large Language Model Guided Tree-of-Thought"
https://arxiv.org/pdf/2305.08291.pdf
The Tree of Thought (ToT) chain uses a tree structure to explore the space of
possible solutions to a problem.
"""
from langchain_experimental.tot.base import ToTChain
from langchain_experimental.tot.checker import ToTChecker
__all__ = ["ToTChain", "ToTChecker"]