mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
eb180e321f
can make it prettier, but what do we think of overall structure? https://api.python.langchain.com/en/dev2049-page_per_class/api_ref.html --------- Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: Nuno Campos <nuno@boringbits.io>
17 lines
773 B
HTML
17 lines
773 B
HTML
{%- extends "basic/search.html" %}
|
|
{% block extrahead %}
|
|
<script type="text/javascript" src="{{ pathto('_static/underscore.js', 1) }}"></script>
|
|
<script type="text/javascript" src="{{ pathto('searchindex.js', 1) }}" defer></script>
|
|
<script type="text/javascript" src="{{ pathto('_static/doctools.js', 1) }}"></script>
|
|
<script type="text/javascript" src="{{ pathto('_static/language_data.js', 1) }}"></script>
|
|
<script type="text/javascript" src="{{ pathto('_static/searchtools.js', 1) }}"></script>
|
|
<!-- <script type="text/javascript" src="{{ pathto('_static/sphinx_highlight.js', 1) }}"></script> -->
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
if (!Search.out) {
|
|
Search.init();
|
|
}
|
|
});
|
|
</script>
|
|
{% endblock %}
|