mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-02 02:39:51 +00:00
docs: Revamp the README file (#4971)
* revamp readme * center the table * more badges and cosmetics
This commit is contained in:
parent
c6ea542b57
commit
917cea8af4
68
README.md
68
README.md
@ -1,39 +1,13 @@
|
||||
<p align="center">
|
||||
<div align="center">
|
||||
<a href="https://www.deepset.ai/haystack/"><img src="https://raw.githubusercontent.com/deepset-ai/haystack/main/docs/img/haystack_logo_colored.png" alt="Haystack"></a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="https://github.com/deepset-ai/haystack/actions/workflows/tests.yml">
|
||||
<img alt="Tests" src="https://github.com/deepset-ai/haystack/workflows/Tests/badge.svg?branch=main">
|
||||
</a>
|
||||
<a href="https://github.com/deepset-ai/haystack-json-schema/actions/workflows/schemas.yml">
|
||||
<img alt="Schemas" src="https://github.com/deepset-ai/haystack-json-schema/actions/workflows/schemas.yml/badge.svg">
|
||||
</a>
|
||||
<a href="https://docs.haystack.deepset.ai">
|
||||
<img alt="Documentation" src="https://img.shields.io/website?label=documentation&up_message=online&url=https%3A%2F%2Fdocs.haystack.deepset.ai">
|
||||
</a>
|
||||
<a href="https://app.fossa.com/projects/custom%2B24445%2Fgithub.com%2Fdeepset-ai%2Fhaystack?ref=badge_shield">
|
||||
<img alt="FOSSA Status" src="https://app.fossa.com/api/projects/custom%2B24445%2Fgithub.com%2Fdeepset-ai%2Fhaystack.svg?type=shield"/>
|
||||
</a>
|
||||
<a href="https://github.com/deepset-ai/haystack/releases">
|
||||
<img alt="Release" src="https://img.shields.io/github/release/deepset-ai/haystack">
|
||||
</a>
|
||||
<a href="https://github.com/deepset-ai/haystack/commits/main">
|
||||
<img alt="Last commit" src="https://img.shields.io/github/last-commit/deepset-ai/haystack">
|
||||
</a>
|
||||
<a href="https://pepy.tech/project/farm-haystack">
|
||||
<img alt="Downloads" src="https://pepy.tech/badge/farm-haystack/month">
|
||||
</a>
|
||||
<a href="https://www.deepset.ai/jobs">
|
||||
<img alt="Jobs" src="https://img.shields.io/badge/Jobs-We're%20hiring-blue">
|
||||
</a>
|
||||
<a href="https://twitter.com/intent/follow?screen_name=deepset_ai">
|
||||
<img alt="Twitter" src="https://img.shields.io/badge/follow-%40deepset_ai-1DA1F2?logo=twitter">
|
||||
</a>
|
||||
<a href="https://discord.com/invite/qZxjM4bAHU">
|
||||
<img alt="chat on Discord" src="https://img.shields.io/discord/993534733298450452?logo=discord">
|
||||
</a>
|
||||
</p>
|
||||
| | |
|
||||
| ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| CI/CD | [](https://github.com/deepset-ai/haystack/actions/workflows/tests.yml) [](https://github.com/deepset-ai/haystack/actions/workflows/docker_release.yml) [](https://github.com/deepset-ai/haystack/actions/workflows/schemas.yml) [](https://github.com/psf/black) [](https://github.com/python/mypy) |
|
||||
| Docs | [](https://github.com/deepset-ai/haystack/actions/workflows/readme_sync.yml)  |
|
||||
| Package |     [](https://github.com/deepset-ai/haystack/actions/workflows/license_compliance.yml) |
|
||||
| Meta |   |
|
||||
</div>
|
||||
|
||||
[Haystack](https://haystack.deepset.ai/) is an end-to-end NLP framework that enables you to build NLP applications powered by LLMs, Transformer models, vector search and more. Whether you want to perform question answering, answer generation, semantic document search, or build tools that are capable of complex decision making and query resolution, you can use the state-of-the-art NLP models with Haystack to build end-to-end NLP applications solving your use case.
|
||||
|
||||
@ -105,7 +79,7 @@ This command installs everything needed for basic Pipelines that use an in-memor
|
||||
To use more advanced features, like certain DocumentStores, FileConverters, OCR, or Ray,
|
||||
you need to install further dependencies. The following command installs the [latest release](https://github.com/deepset-ai/haystack/releases) of Haystack and all its dependencies:
|
||||
|
||||
```bash
|
||||
```sh
|
||||
pip install 'farm-haystack[all]' ## or 'all-gpu' for the GPU-enabled dependencies
|
||||
```
|
||||
|
||||
@ -115,20 +89,16 @@ If you want to try out the newest features that are not in an official release y
|
||||
pip install git+https://github.com/deepset-ai/haystack.git@main#egg=farm-haystack
|
||||
```
|
||||
|
||||
To be able to make changes to Haystack code, install with the following commands:
|
||||
To be able to make changes to Haystack code, first of all clone this repo:
|
||||
|
||||
```bash
|
||||
# Clone the repo
|
||||
```sh
|
||||
git clone https://github.com/deepset-ai/haystack.git
|
||||
```
|
||||
|
||||
# Move into the cloned folder
|
||||
cd haystack
|
||||
Then move into the cloned folder and install the project with `pip`, including the development dependencies:
|
||||
|
||||
# Upgrade pip
|
||||
pip install --upgrade pip
|
||||
|
||||
# Install Haystack in editable mode (-e) with the development tools
|
||||
pip install -e '.[dev]'
|
||||
```console
|
||||
cd haystack && pip install -e '.[dev]'
|
||||
```
|
||||
|
||||
If you want to contribute to the Haystack repo, check our [Contributor Guidelines](#💙-contributing) first.
|
||||
@ -163,15 +133,11 @@ If you have a feature request or a bug report, feel free to open an [issue in Gi
|
||||
|
||||
We are very open to the community's contributions - be it a quick fix of a typo, or a completely new feature! You don't need to be a Haystack expert to provide meaningful improvements. To learn how to get started, check out our [Contributor Guidelines](https://github.com/deepset-ai/haystack/blob/main/CONTRIBUTING.md) first.
|
||||
|
||||
You can also find instructions to run the tests locally there.
|
||||
|
||||
Thanks so much to all those who have contributed to our project!
|
||||
|
||||
<a href="[](https://github.com/deepset-ai/haystack/graphs/contributors)[https://github.com/deepset-ai/haystack/graphs/contributors](https://github.com/deepset-ai/haystack/graphs/contributors)"> <img src="[](https://contrib.rocks/image?repo=deepset-ai/haystack)[https://contrib.rocks/image?repo=deepset-ai/haystack](https://contrib.rocks/image?repo=deepset-ai/haystack)" /> </a>
|
||||
|
||||
## Who Uses Haystack
|
||||
|
||||
Here's a list of organizations that we know about from our community. Don't hesitate to send a PR to let the world know that you use Haystack. Join our growing community!
|
||||
Here's a list of projects and companies using Haystack. Want to add yours? Open a PR, add it to the list and let the
|
||||
world know that you use Haystack!
|
||||
|
||||
- [Airbus](https://www.airbus.com/en)
|
||||
- [Alcatel-Lucent](https://www.al-enterprise.com/)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user