2023-11-07 20:09:03 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
hatchling,
|
|
|
|
boilerpy3,
|
|
|
|
events,
|
|
|
|
httpx,
|
|
|
|
jsonschema,
|
|
|
|
lazy-imports,
|
|
|
|
more-itertools,
|
|
|
|
networkx,
|
|
|
|
pandas,
|
|
|
|
pillow,
|
|
|
|
platformdirs,
|
|
|
|
posthog,
|
|
|
|
prompthub-py,
|
|
|
|
pydantic,
|
|
|
|
quantulum3,
|
|
|
|
rank-bm25,
|
|
|
|
requests,
|
|
|
|
requests-cache,
|
|
|
|
scikit-learn,
|
|
|
|
sseclient-py,
|
|
|
|
tenacity,
|
|
|
|
tiktoken,
|
|
|
|
tqdm,
|
|
|
|
transformers,
|
|
|
|
openai-whisper,
|
|
|
|
boto3,
|
|
|
|
botocore,
|
|
|
|
# , beir
|
|
|
|
selenium,
|
|
|
|
coverage,
|
|
|
|
dulwich,
|
|
|
|
# , jupytercontrib
|
|
|
|
mkdocs,
|
|
|
|
mypy,
|
|
|
|
pre-commit,
|
|
|
|
psutil,
|
|
|
|
# , pydoc-markdown
|
|
|
|
pylint,
|
|
|
|
pytest,
|
|
|
|
pytest-asyncio,
|
2024-10-16 01:20:21 +00:00
|
|
|
pytest-cov-stub,
|
2023-11-07 20:09:03 +00:00
|
|
|
# , pytest-custom-exit-code
|
|
|
|
python-multipart,
|
|
|
|
reno,
|
|
|
|
responses,
|
|
|
|
toml,
|
|
|
|
tox,
|
|
|
|
watchdog,
|
|
|
|
elastic-transport,
|
|
|
|
elasticsearch,
|
|
|
|
# , azure-ai-formrecognizer
|
|
|
|
beautifulsoup4,
|
|
|
|
markdown,
|
|
|
|
python-docx,
|
|
|
|
python-frontmatter,
|
|
|
|
python-magic,
|
|
|
|
tika,
|
|
|
|
black,
|
|
|
|
huggingface-hub,
|
|
|
|
sentence-transformers,
|
|
|
|
mlflow,
|
|
|
|
rapidfuzz,
|
|
|
|
scipy,
|
|
|
|
seqeval,
|
|
|
|
pdf2image,
|
|
|
|
pytesseract,
|
|
|
|
faiss,
|
|
|
|
# , faiss-gpu
|
|
|
|
pinecone-client,
|
|
|
|
onnxruntime,
|
|
|
|
onnxruntime-tools,
|
|
|
|
# , onnxruntime-gpu
|
|
|
|
opensearch-py,
|
|
|
|
pymupdf,
|
|
|
|
langdetect,
|
|
|
|
nltk,
|
|
|
|
canals,
|
|
|
|
jinja2,
|
|
|
|
openai,
|
|
|
|
aiorwlock,
|
|
|
|
ray,
|
|
|
|
psycopg2,
|
|
|
|
sqlalchemy,
|
|
|
|
sqlalchemy-utils,
|
|
|
|
weaviate-client,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-07-08 07:32:48 +00:00
|
|
|
pname = "haystack-ai";
|
2024-09-29 15:04:54 +00:00
|
|
|
version = "2.5.1";
|
2023-11-07 20:09:03 +00:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "deepset-ai";
|
|
|
|
repo = "haystack";
|
2023-11-09 14:21:07 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-09-29 15:04:54 +00:00
|
|
|
hash = "sha256-9lhAiM9uqa6CLb8A59mPVffA1Bnfs4A37/+kKA94cCQ=";
|
2023-11-07 20:09:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
hatchling
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonRemoveDeps = [
|
|
|
|
# We call it faiss, not faiss-cpu.
|
|
|
|
"faiss-cpu"
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
boilerpy3
|
|
|
|
events
|
|
|
|
httpx
|
|
|
|
jsonschema
|
|
|
|
lazy-imports
|
|
|
|
more-itertools
|
|
|
|
networkx
|
|
|
|
pandas
|
|
|
|
pillow
|
|
|
|
platformdirs
|
|
|
|
posthog
|
|
|
|
prompthub-py
|
|
|
|
pydantic
|
|
|
|
quantulum3
|
|
|
|
rank-bm25
|
|
|
|
requests
|
|
|
|
requests-cache
|
|
|
|
scikit-learn
|
|
|
|
sseclient-py
|
|
|
|
tenacity
|
|
|
|
tiktoken
|
|
|
|
tqdm
|
|
|
|
transformers
|
|
|
|
];
|
|
|
|
|
|
|
|
env.HOME = "$(mktemp -d)";
|
|
|
|
|
2024-09-29 05:35:45 +00:00
|
|
|
optional-dependencies = {
|
2023-11-07 20:09:03 +00:00
|
|
|
# all = [
|
|
|
|
# farm-haystack
|
|
|
|
# ];
|
|
|
|
# all-gpu = [
|
|
|
|
# farm-haystack
|
|
|
|
# ];
|
|
|
|
audio = [ openai-whisper ];
|
|
|
|
aws = [
|
|
|
|
boto3
|
|
|
|
botocore
|
|
|
|
];
|
|
|
|
# beir = [
|
|
|
|
# beir
|
|
|
|
# ];
|
|
|
|
colab = [ pillow ];
|
|
|
|
crawler = [ selenium ];
|
|
|
|
dev = [
|
|
|
|
coverage
|
|
|
|
dulwich
|
|
|
|
# jupytercontrib
|
|
|
|
mkdocs
|
|
|
|
mypy
|
|
|
|
pre-commit
|
|
|
|
psutil
|
|
|
|
# pydoc-markdown
|
|
|
|
pylint
|
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
2024-10-16 01:20:21 +00:00
|
|
|
pytest-cov-stub
|
2023-11-07 20:09:03 +00:00
|
|
|
# pytest-custom-exit-code
|
|
|
|
python-multipart
|
|
|
|
reno
|
|
|
|
responses
|
|
|
|
toml
|
|
|
|
tox
|
|
|
|
watchdog
|
|
|
|
];
|
|
|
|
elasticsearch7 = [
|
|
|
|
elastic-transport
|
|
|
|
elasticsearch
|
|
|
|
];
|
|
|
|
elasticsearch8 = [
|
|
|
|
elastic-transport
|
|
|
|
elasticsearch
|
|
|
|
];
|
|
|
|
file-conversion = [
|
|
|
|
# azure-ai-formrecognizer
|
|
|
|
beautifulsoup4
|
|
|
|
markdown
|
|
|
|
python-docx
|
|
|
|
python-frontmatter
|
|
|
|
python-magic
|
|
|
|
# python-magic-bin
|
|
|
|
tika
|
|
|
|
];
|
|
|
|
formatting = [ black ];
|
|
|
|
inference = [
|
|
|
|
huggingface-hub
|
|
|
|
sentence-transformers
|
|
|
|
transformers
|
|
|
|
];
|
|
|
|
metrics = [
|
|
|
|
mlflow
|
|
|
|
rapidfuzz
|
|
|
|
scipy
|
|
|
|
seqeval
|
|
|
|
];
|
|
|
|
ocr = [
|
|
|
|
pdf2image
|
|
|
|
pytesseract
|
|
|
|
];
|
|
|
|
only-faiss = [ faiss ];
|
|
|
|
# only-faiss-gpu = [
|
|
|
|
# faiss-gpu
|
|
|
|
# ];
|
|
|
|
only-pinecone = [ pinecone-client ];
|
|
|
|
onnx = [
|
|
|
|
onnxruntime
|
|
|
|
onnxruntime-tools
|
|
|
|
];
|
|
|
|
# onnx-gpu = [
|
|
|
|
# onnxruntime-gpu
|
|
|
|
# onnxruntime-tools
|
|
|
|
# ];
|
|
|
|
opensearch = [ opensearch-py ];
|
|
|
|
pdf = [ pymupdf ];
|
|
|
|
preprocessing = [
|
|
|
|
langdetect
|
|
|
|
nltk
|
|
|
|
];
|
|
|
|
preview = [
|
|
|
|
canals
|
|
|
|
jinja2
|
|
|
|
lazy-imports
|
|
|
|
openai
|
|
|
|
pandas
|
|
|
|
rank-bm25
|
|
|
|
requests
|
|
|
|
tenacity
|
|
|
|
tqdm
|
|
|
|
];
|
|
|
|
ray = [
|
|
|
|
aiorwlock
|
|
|
|
ray
|
|
|
|
];
|
|
|
|
sql = [
|
|
|
|
psycopg2
|
|
|
|
sqlalchemy
|
|
|
|
sqlalchemy-utils
|
|
|
|
];
|
|
|
|
weaviate = [ weaviate-client ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# the setup for test is intensive, hopefully can be done at some point
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "haystack" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "LLM orchestration framework to build customizable, production-ready LLM applications";
|
|
|
|
longDescription = ''
|
|
|
|
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
|
|
|
|
'';
|
2024-08-30 02:43:47 +00:00
|
|
|
changelog = "https://github.com/deepset-ai/haystack/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
|
2023-11-07 20:09:03 +00:00
|
|
|
homepage = "https://github.com/deepset-ai/haystack";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ happysalada ];
|
2023-12-02 05:05:10 +00:00
|
|
|
# https://github.com/deepset-ai/haystack/issues/5304
|
|
|
|
broken = versionAtLeast pydantic.version "2";
|
2023-11-07 20:09:03 +00:00
|
|
|
};
|
|
|
|
}
|