You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/experimental/langchain_experimental/tot/__init__.py

13 lines
426 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"]