experimental[patch]: update module doc strings (#19539)

Added missed module descriptions. Fixed format.
This commit is contained in:
Leonid Ganeline
2024-03-26 07:38:10 -07:00
committed by GitHub
parent 72ba738bf5
commit 4159a4723c
30 changed files with 154 additions and 40 deletions

View File

@@ -1,10 +1,9 @@
"""Implements Program-Aided Language Models.
"""**PAL Chain** implements **Program-Aided Language** Models.
As in https://arxiv.org/pdf/2211.10435.pdf.
See the paper: https://arxiv.org/pdf/2211.10435.pdf.
This is vulnerable to arbitrary code execution:
https://github.com/langchain-ai/langchain/issues/5872
"""
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"]