mirror of
https://github.com/hwchase17/langchain.git
synced 2026-07-14 13:47:41 +00:00
39 lines
797 B
ReStructuredText
39 lines
797 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 %}
|
|
|
|
{% if objname in imported_classes %}
|
|
Examples using this class
|
|
--------------------------
|
|
|
|
{% for example in imported_classes[objname] %}
|
|
* `Example <{{ example }}>`_
|
|
{%- endfor %}
|
|
{% endif %}
|
|
|
|
.. example_links:: {{ objname }} |