Skip to main content

Custom Component Template

A template repository for creating custom Haystack components and publishing them as standalone Python packages.

For more details, see the Haystack documentation on creating custom components and creating custom document stores.

How to use this template

  1. Click Use this template to create a new repository.

  2. Rename the package directory from src/haystack_integrations/components/example/ to match your integration. See Namespace convention below for the correct path.

  3. Update pyproject.toml — search for TODO comments and replace:

    • name: your package name, following the <technology>-haystack convention (e.g. opensearch-haystack)
    • description, authors, keywords, project.urls
    • dependencies: add your integration-specific dependencies
    • tool.hatch.version.raw-options: if you renamed directories, the version path is still derived from git tags so no change is needed here
  4. Add your component code in the renamed directory and export your classes from __init__.py.

  5. Add tests in tests/ — see the skeleton in tests/test_example.py.

  6. Search for all TODO comments across the project and address them.

Check out the video walkthrough for a step-by-step guide on how to use this template.

Namespace convention

Haystack integrations use the haystack_integrations namespace package. The directory structure under src/ determines the import path for your component.

Components (converters, embedders, generators, rankers, etc.) use:

src/haystack_integrations/components/<type>/<name>/

Import path: from haystack_integrations.components.<type>.<name> import MyComponent

Common component types: converters, embedders, generators, rankers, retrievers, connectors, tools, websearch

Document stores use a separate namespace:

src/haystack_integrations/document_stores/<name>/

Import path: from haystack_integrations.document_stores.<name> import MyDocumentStore

Development

This project uses Hatch for build and environment management.

# Install Hatch
pip install hatch

# Format and lint
hatch run fmt        # auto-fix
hatch run fmt-check  # check only

# Run tests
hatch run test:unit         # unit tests only
hatch run test:integration  # integration tests only
hatch run test:all          # all tests
hatch run test:cov          # with coverage

Publishing to PyPI

This template includes a GitHub Actions workflow that publishes your package to PyPI when you push a version tag.

  1. Add a PYPI_API_TOKEN secret to your repository settings (Settings > Secrets and variables > Actions).

  2. Create a version tag and push it:

    git tag v0.1.0
    git push origin v0.1.0
    

The release workflow will build and publish the package automatically.

License

Apache-2.0 - See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neuforge_haystack-0.1.0.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neuforge_haystack-0.1.0-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file neuforge_haystack-0.1.0.tar.gz.

File metadata

  • Download URL: neuforge_haystack-0.1.0.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.14

File hashes

Hashes for neuforge_haystack-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a5915e27599653882feecf6254feb9cc474a152d5dcc30ab1c811329371c597b
MD5 12239fc89118c01e5d4b96ba73565a12
BLAKE2b-256 bc25cf38a9ad31aaef016fe08be9f398ea6527f255da43d3a3edc588970544da

See more details on using hashes here.

File details

Details for the file neuforge_haystack-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for neuforge_haystack-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 62cdd01ec4ac7d07e15ac5501dd07d1ab87ed923f6c49bc1f7f7c621e326c028
MD5 bd62ecc2b97deaebe84d5fcf746d5963
BLAKE2b-256 743b564c56b4a21ef7b0e618db2e87c32dd95d232b2cc9222dcb2bd4e10a28ed

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page