mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-24 01:10:45 +00:00

* new docs version * updated directory structure * Add pipelines page * Add Finder deprecation suggestion * header for pipelines file * Document MySQL support * Mention DPR train tutorial coming soon * Mention open distro ES * Update doc strings regarding similarity fn * Add link to API docs * Wrap pipelines docs in box * add api reference for pipelines * copied latest version to v0.6.0 * Remove space * Remove space * Copy to v0.6.0 Co-authored-by: brandenchan <brandenchan@icloud.com>
58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = _('Overview') %}
|
|
{% block body %}
|
|
<h1>Haystack Documentation</h1>
|
|
<p>
|
|
{{ _('Welcome! This is') }}
|
|
{% block description %}{{ _('the documentation for') }} Haystack
|
|
{% endblock %}.
|
|
</p>
|
|
{% block tables %}
|
|
<h2>Haystack</h2>
|
|
<table class="contentstable" align="center">
|
|
<tr>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
What can Haystack do?
|
|
</a>
|
|
<br />
|
|
</p>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
Conceptual overview
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Getting started</h2>
|
|
<table class="contentstable" align="center">
|
|
<tr>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="">
|
|
Installation guides
|
|
</a>
|
|
</p>
|
|
</td>
|
|
<td width="50%">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("ddocs/views/intro") }}">
|
|
Tutorial
|
|
</a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Links</h2>
|
|
<table class="contentstable" align="center"><tr>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="">Download Haystack</a></p>
|
|
</td></tr>
|
|
</table>
|
|
{% endblock %}
|
|
{% endblock %}
|