Code Monkey home page Code Monkey logo

ilkersigirci / haystack Goto Github PK

View Code? Open in Web Editor NEW

This project forked from deepset-ai/haystack

0.0 0.0 0.0 37.68 MB

:mag: LLM orchestration framework to build customizable, production-ready LLM applications. Connect components (models, vector DBs, file converters) to pipelines or agents that can interact with your data. With advanced retrieval methods, it's best suited for building RAG, question answering, semantic search or conversational agent chatbots.

Home Page: https://haystack.deepset.ai

License: Apache License 2.0

Python 95.57% HTML 3.92% HCL 0.04% Jinja 0.47%

haystack's Introduction

Haystack
CI/CD Tests code style - Black types - Mypy Coverage Status
Docs Website
Package PyPI PyPI - Downloads PyPI - Python Version GitHub License Compliance
Meta Discord Twitter Follow

Warning

You are currently looking at the readme of Haystack 2.0-Beta, an unstable version of what will eventually become Haystack 2.0. We are still maintaining Haystack 1.x which is the version of Haystack you should use in production. Switch to Haystack 1.x here.

Haystack is an end-to-end LLM framework that enables you to build applications powered by LLMs, Transformer models, vector search and more. Whether you want to perform retrieval-augmented generation (RAG), documentation search, question answering or answer generation, you can use state-of-the-art embedding models and LLMs with Haystack to build end-to-end NLP applications to solve your use case.

Quickstart

Haystack is built around the concept of pipelines. A pipeline is a powerful structure that performs an NLP task. It's made up of components connected together. For example, you can connect a retriever and a generator to build a Generative Question Answering pipeline that uses your own data.

First, run the minimal Haystack installation:

pip install haystack-ai

πŸ‘‰ To build a minimal RAG pipeline that uses GPT-4 on your own data, use the RAG Pipeline Recipe

Core Concepts

βš›οΈ Components: Each Component achieves one thing. Such as preprocessing documents, retrieving documents, using specific language models to answer questions, and so on. Components can .connect() to each other to form a complete pipeline.

πŸƒβ€β™€οΈ Pipelines: This is the standard Haystack structure that builds on top of your data to perform various NLP tasks such as retrieval augmented generation, question answering and more. Pipelines in Haystack are Directed Multigraphs composed of components. Components can receive inputs from other components and produce outputs that can be forwarded to other components.

πŸ—‚οΈ Document Stores: A DocumentStore is a database where you store your text data for Haystack to access. Haystack DocumentStores are available with ElasticSearch, Opensearch, Weaviate, Pinecone, Chroma and more. For a full list of available DocumentStores, check out our documentation.

πŸ”Œ Integrations: The Haystack ecosystem integrates with many other technologies, such as vector databases, model providers and even custom components made by the community. You can find a list of available integrations on the Haystack Integrations page. The source code of the integrations maintained by deepset can be found in the haystack-core-integrations GitHub repository.

What to Build with Haystack

  • Build retrieval augmented generation (RAG) by making use of one of the available vector databases and customizing your LLM interaction, the sky is the limit πŸš€
  • Perform Question Answering in natural language to find granular answers in your documents.
  • Perform semantic search and retrieve documents according to meaning.
  • Build applications that can make complex decisions making to answer complex queries: such as systems that can resolve complex customer queries, do knowledge search on many disconnected resources and so on.
  • Use off-the-shelf models or fine-tune them to your data.
  • Use user feedback to evaluate, benchmark, and continuously improve your models.

Note

πŸ’™ Contributing to Haystack

There are several ways you can contribute to Haystack:

πŸ‘‰ Check out the full list of issues that are open to contributions

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 first.

Tip

Are you looking for a managed solution that benefits from Haystack? deepset Cloud is our fully managed, end-to-end platform to integrate LLMs with your data, which uses Haystack for the LLM pipelines architecture.

Features

  • Latest models: Haystack allows you to use and compare models available from OpenAI, Cohere and Hugging Face, as well as your own local models or models hosted on SageMaker. Use the latest LLMs or Transformer-based models (for example: BERT, RoBERTa, MiniLM).
  • Modular: Multiple choices to fit your tech stack and use case. A wide choice of DocumentStores to store your data, file conversion tools and more
  • Open: Integrated with Hugging Face's model hub, OpenAI, Cohere and various Azure services.
  • Scalable: Scale to millions of docs using retrievers and production-scale components like Elasticsearch and a fastAPI REST API.
  • End-to-End: All tooling in one place: file conversion, cleaning, splitting, training, eval, inference, labeling, and more.
  • Customizable: Fine-tune models to your domain or implement your custom Nodes.
  • Continuous Learning: Collect new training data from user feedback in production & improve your models continuously.

Resources

πŸ“’ Docs Components, Pipeline Nodes, Guides, API Reference
πŸŽ“ Tutorials See what Haystack can do with our Notebooks & Scripts
πŸŽ‰Β Integrations The index of additional Haystack packages and components that can be installed separately
πŸ”° Demos A repository containing Haystack demo applications with Docker Compose and a REST API
πŸ§‘β€πŸ³ Cookbook A repository containing example notebooks of Haystack being used in specific scenarios
πŸ–– Community Discord, 𝕏 (Twitter), Stack Overflow, GitHub Discussions
πŸ’™ Contributing We welcome all contributions!
πŸ”­ Roadmap Public roadmap of Haystack
πŸ“° Blog Learn about the latest with Haystack and NLP
☎️ Jobs We're hiring! Have a look at our open positions

πŸ’Ύ Installation

For a detailed installation guide see the official documentation. There you’ll find instructions for custom installations handling Windows and Apple Silicon.

Basic Installation

Use pip to install a basic version of Haystack's latest release:

pip install haystack-ai

This command installs everything needed for basic Pipelines that use an in-memory DocumentStore and external LLM provider (e.g. OpenAI).

If you want to try out the newest features that are not in an official release yet, you can install the unstable version from the main branch with the following command:

pip install git+https://github.com/deepset-ai/haystack.git@main#egg=haystack-ai

To be able to make changes to Haystack code, first of all clone this repo:

git clone https://github.com/deepset-ai/haystack.git

Then move into the cloned folder and install the project with pip, including the development dependencies:

cd haystack && pip install -e '.[dev]'

If you want to contribute to the Haystack repo, check our Contributor Guidelines first.

πŸ”°Demos

You can find some of our hosted demos with instructions to run them locally too on our haystack-demos repository:

πŸ’« Reduce Hallucinations with Retrieval Augmentation - Generative QA with LLMs

πŸ₯ Should I follow? - Summarizing tweets with LLMs

🌎 Explore The World - Extractive Question Answering

πŸ–– Community

If you have a feature request or a bug report, feel free to open an issue in Github. We regularly check these and you can expect a quick response. If you'd like to discuss a topic, or get more general advice on how to make Haystack work for your project, you can start a thread in Github Discussions or our Discord channel. We also check 𝕏 (Twitter) and Stack Overflow.

πŸ“ Telemetry

Haystack collects anonymous usage statistics of pipeline components. We receive an event every time these components are initialized. This way, we know which components are most relevant to our community.

Read more about telemetry in Haystack or how you can opt out in Haystack docs.

Who Uses Haystack

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!

haystack's People

Contributors

zansara avatar tholor avatar silvanocerza avatar masci avatar vblagoje avatar julian-risch avatar anakin87 avatar bogdankostic avatar brandenchan avatar tanaysoni avatar tstadel avatar sjrl avatar timoeller avatar tuanacelik avatar oryx1729 avatar agnieszka-m avatar michelbartels avatar piffpaffm avatar lalitpagaria avatar dfokina avatar danielbichuetti avatar mayankjobanputra avatar zoltan-fedor avatar akkefa avatar dependabot[bot] avatar shademe avatar bilgeyucel avatar guillim avatar awinml avatar cclauss avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.