mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
15 lines
292 B
Python
15 lines
292 B
Python
|
"""**OutputParser** classes parse the output of an LLM call.
|
||
|
|
||
|
**Class hierarchy:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
BaseLLMOutputParser --> BaseOutputParser --> <name>OutputParser # GuardrailsOutputParser
|
||
|
|
||
|
**Main helpers:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
Serializable, Generation, PromptValue
|
||
|
""" # noqa: E501
|