mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
a363ab5292
### Description renamed several repository links from `hwchase17` to `langchain-ai`. ### Why I discovered that the README file in the devcontainer contains an old repository name, so I took the opportunity to rename the old repository name in all files within the repository, excluding those that do not require changes. ### Dependencies none ### Tag maintainer @baskaryan ### Twitter handle [kzk_maeda](https://twitter.com/kzk_maeda)
11 lines
280 B
Python
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"]
|