notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details
py-haystack_ai End-to-end LLM framework
2.18.1 misc on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 2.17.1Version of this port present on the latest quarterly branch.
Maintainer: otis@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2025-09-14 11:15:05
Last Update: 2025-10-14 08:22:04
Commit Hash: 0e84fbea
Also Listed In: python
License: APACHE20
WWW:
https://github.com/deepset-ai/haystack
Description:
Haystack is an end-to-end LLM framework that allows you to build applications powered by LLMs, Transformer models, vector search and more. Whether you want to perform retrieval-augmented generation (RAG), document search, question answering or answer generation, Haystack can orchestrate state-of-the-art embedding models and LLMs into pipelines to build end-to-end NLP applications and solve your use case.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
USE_RC_SUBR (Service Scripts)
  • no SUBR information found for this port
Dependency lines:
  • ${PYTHON_PKGNAMEPREFIX}haystack_ai>0:misc/py-haystack_ai@${PY_FLAVOR}
To install the port:
cd /usr/ports/misc/py-haystack_ai/ && make install clean
To add the package, run one of these commands:
  • pkg install misc/py-haystack_ai
  • pkg install py311-haystack_ai
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
NOTE: This is a Python port. Instead of py311-haystack_ai listed in the above command, you can pick from the names under the Packages section.
PKGNAME: py311-haystack_ai
Package flavors (<flavor>: <package>)
  • py311: py311-haystack_ai
distinfo:
TIMESTAMP = 1760378404 SHA256 (haystack_ai-2.18.1.tar.gz) = e734369ae5064b4f1647f1001e1a28584955be08df673a32cd36877126dbcc77 SIZE (haystack_ai-2.18.1.tar.gz) = 403143

Packages (timestamps in pop-ups are UTC):
py311-haystack_ai
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest2.18.12.18.1--2.18.1n/an/an/a
FreeBSD:13:quarterly2.17.12.17.1--2.18.1n/an/an/a
FreeBSD:14:latest2.18.12.18.1--2.18.1---
FreeBSD:14:quarterly2.17.12.18.1--2.18.1---
FreeBSD:15:latest2.18.12.18.1n/a-n/an/a--
FreeBSD:15:quarterly2.18.12.18.1n/a-n/an/a--
FreeBSD:16:latest2.18.12.18.1n/a-n/an/a--
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. py311-hatchling>0 : devel/py-hatchling@py311
  2. python3.11 : lang/python311
  3. py311-build>=0 : devel/py-build@py311
  4. py311-installer>=0 : devel/py-installer@py311
Test dependencies:
  1. python3.11 : lang/python311
Runtime dependencies:
  1. py311-tqdm>0 : misc/py-tqdm@py311
  2. py311-tenacity>0 : devel/py-tenacity@py311
  3. py311-lazy_imports>0 : devel/py-lazy_imports@py311
  4. py311-openai>0 : misc/py-openai@py311
  5. py311-pydantic2>0 : devel/py-pydantic2@py311
  6. py311-Jinja2>0 : devel/py-Jinja2@py311
  7. py311-posthog>0 : misc/py-posthog@py311
  8. py311-pyyaml>0 : devel/py-pyyaml@py311
  9. py311-more-itertools>0 : devel/py-more-itertools@py311
  10. py311-networkx>0 : math/py-networkx@py311
  11. py311-typing-extensions>0 : devel/py-typing-extensions@py311
  12. py311-requests>0 : www/py-requests@py311
  13. py311-numpy>0 : math/py-numpy@py311
  14. py311-python-dateutil>0 : devel/py-python-dateutil@py311
  15. py311-jsonschema>0 : devel/py-jsonschema@py311
  16. py311-filetype>0 : devel/py-filetype@py311
  17. python3.11 : lang/python311
This port is required by:
for Run
  1. misc/py-haystack_experimental

Configuration Options:
No options to configure
Options name:
misc_py-haystack_ai
USES:
python
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (2 items)
Collapse this list.
  1. https://files.pythonhosted.org/packages/source/h/haystack_ai/
  2. https://pypi.org/packages/source/h/haystack_ai/
Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
2.18.1
14 Oct 2025 08:22:04
commit hash: 0e84fbeaf216583628286f15d95204e6b5f2b7f6commit hash: 0e84fbeaf216583628286f15d95204e6b5f2b7f6commit hash: 0e84fbeaf216583628286f15d95204e6b5f2b7f6commit hash: 0e84fbeaf216583628286f15d95204e6b5f2b7f6 files touched by this commit
Juraj Lutter (otis) search for other commits by this committer
misc/py-haystack_ai: Update to 2.18.1

- Enhancement Notes:
  - Added tools to agent run parameters to enhance the agent's
    flexibility. Users can now choose a subset of tools for the agent at
    runtime by providing a list of tool names, or supply an entirely new
    set by passing Tool objects or a Toolset.

- Bug Fixes
  - Fix Agent run_async method to correctly handle async streaming
    callbacks. This previously triggered errors due to a bug.
  - Prevent duplication of the last assistant message in the chat
    history when initializing from an AgentSnapshot.
  - We were setting response_format to None in OpenAIChatGenerator by
    default which doesn't follow the API spec. We now omit the variable
    if response_format is not passed by the user.

Sponsored by:	resulta.tech
2.17.1
14 Sep 2025 11:13:12
commit hash: d60bcea3003e9086c7ba3ed4915b64442958ca75commit hash: d60bcea3003e9086c7ba3ed4915b64442958ca75commit hash: d60bcea3003e9086c7ba3ed4915b64442958ca75commit hash: d60bcea3003e9086c7ba3ed4915b64442958ca75 files touched by this commit
Juraj Lutter (otis) search for other commits by this committer
misc/py-haystack_ai: Add new port

Haystack is an end-to-end LLM framework that allows you to build
applications powered by LLMs, Transformer models, vector search and
more.

Sponsored by:	resulta.tech

Number of commits found: 2