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/pal_chain/__init__.py

11 lines
280 B
Python

"""Implements Program-Aided Language Models.
As in https://arxiv.org/pdf/2211.10435.pdf.
This is vulnerable to arbitrary code execution:
https://github.com/langchain-ai/langchain/issues/5872
"""
from langchain_experimental.pal_chain.base import PALChain
__all__ = ["PALChain"]