mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
11 lines
277 B
Python
11 lines
277 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/hwchase17/langchain/issues/5872
|
|
"""
|
|
from langchain_experimental.pal_chain.base import PALChain
|
|
|
|
__all__ = ["PALChain"]
|