mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
29 lines
549 B
ReStructuredText
29 lines
549 B
ReStructuredText
|
:mod:`{{module}}`.{{objname}}
|
||
|
{{ underline }}==============
|
||
|
|
||
|
.. currentmodule:: {{ module }}
|
||
|
|
||
|
.. autoclass:: {{ objname }}
|
||
|
|
||
|
{% block methods %}
|
||
|
{% if methods %}
|
||
|
.. rubric:: {{ _('Methods') }}
|
||
|
|
||
|
.. autosummary::
|
||
|
{% for item in methods %}
|
||
|
~{{ name }}.{{ item }}
|
||
|
{%- endfor %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block attributes %}
|
||
|
{% if attributes %}
|
||
|
.. rubric:: {{ _('Attributes') }}
|
||
|
|
||
|
.. autosummary::
|
||
|
{% for item in attributes %}
|
||
|
~{{ name }}.{{ item }}
|
||
|
{%- endfor %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|