mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
4159a4723c
Added missed module descriptions. Fixed format.
10 lines
330 B
Python
10 lines
330 B
Python
"""**PAL Chain** implements **Program-Aided Language** Models.
|
|
|
|
See the paper: https://arxiv.org/pdf/2211.10435.pdf.
|
|
|
|
This chain is vulnerable to [arbitrary code execution](https://github.com/langchain-ai/langchain/issues/5872).
|
|
""" # noqa: E501
|
|
from langchain_experimental.pal_chain.base import PALChain
|
|
|
|
__all__ = ["PALChain"]
|