← Back to search
25
Basic
Agentic Readiness Score
ai-tools llms-txtai

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 25/100

            

llms.txt Content

# Haystack > Haystack is an end-to-end framework for building powerful and production-ready AI applications with Large Language Models (LLMs). It enables developers to create custom pipelines for agents, retrieval-augmented generation (RAG), question answering (QA), semantic document search, and more. Haystack's modular architecture allows integration of various technologies from Amazon Bedrock, Langfuse, Qdrant, Elasticsearch, Pgvector, Hugging Face Transformers, and more. Key features include: - Built-in support for agents and RAG - Modular component system for building custom AI workflows, including custom components - Flexible pipeline architecture for complex data flows - Integration with various LLM providers and open-source projects - Support for multiple data modalities beyond text, including image and audio processing Installation of Haystack: `pip install haystack-ai` Installation of integrations: `pip install <provider>-haystack`, for example `pip install amazon-bedrock-haystack` or `pip install qdrant-haystack` ## Docs - [Concepts Overview](https://docs.haystack.deepset.ai/docs/components_overview): Brief introduction to the most important concepts, including Components, Pipelines, Document Stores. - [Pipelines](https://docs.haystack.deepset.ai/docs/pipelines): Guide to creating and managing pipelines - [Components](https://docs.haystack.deepset.ai/docs/components): Guide to using ready-made components and creating custom components - [Agents](https://docs.haystack.deepset.ai/docs/agents): Guide to agents and tool-calling - [Integrations Overview](https://haystack.deepset.ai/integrations): List of all integrations - [API Reference](https://docs.haystack.deepset.ai/reference/pipeline-api#pipeline): API reference for Pipeline and AsyncPipeline ## Examples - [Tutorial on QA Pipeline with RAG](https://haystack.deepset.ai/tutorials/27_first_rag_pipeline): Step-by-step guide to building a QA system with RAG - [Tutorial on Tool-Calling Agents](https://hayst