mirror of
				https://github.com/hwchase17/langchain.git
				synced 2025-10-31 07:41:40 +00:00 
			
		
		
		
	- Move the API reference into the vercel build - Update api reference organization and styling
		
			
				
	
	
		
			37 lines
		
	
	
		
			624 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			624 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
| {{ objname }}
 | |
| {{ underline }}==============
 | |
| 
 | |
| .. currentmodule:: {{ module }}
 | |
| 
 | |
| .. autoclass:: {{ objname }}
 | |
| 
 | |
|    {% block attributes %}
 | |
|    {% if attributes %}
 | |
|    .. rubric:: {{ _('Attributes') }}
 | |
| 
 | |
|    .. autosummary::
 | |
|    {% for item in attributes %}
 | |
|       ~{{ item }}
 | |
|    {%- endfor %}
 | |
|    {% endif %}
 | |
|    {% endblock %}
 | |
| 
 | |
|    {% block methods %}
 | |
|    {% if methods %}
 | |
|    .. rubric:: {{ _('Methods') }}
 | |
| 
 | |
|    .. autosummary::
 | |
|    {% for item in methods %}
 | |
|       ~{{ item }}
 | |
|    {%- endfor %}
 | |
| 
 | |
|    {% for item in methods %}
 | |
|    .. automethod:: {{ item }}
 | |
|    {%- endfor %}
 | |
| 
 | |
|    {% endif %}
 | |
|    {% endblock %}
 | |
| 
 | |
| 
 | |
| .. example_links:: {{ objname }}
 |