DocumentationAPI Reference📓 Tutorials🧑‍🍳 Cookbook🤝 Integrations💜 Discord🎨 Studio (Waitlist)
Documentation

Creating Custom Components

Create your own components and use them standalone or in pipelines.

With Haystack 2.x, you can easily create any custom components for various tasks, from filtering results to integrating with external software. You can then insert, reuse, and share these components within Haystack or even with an external audience by packaging them and submitting them to Haystack Integrations!

Requirements

Here are the requirements for all custom components:

  • @component: This decorator marks a class as a component, allowing it to be used in a pipeline.
  • run(): This is a required method in every component. It accepts input arguments and returns a dict. The inputs can either come from the pipeline when it’s executed, or from the output of another component when connected using connect(). The run() method should be compatible with the input/output definitions declared for the component. See an Extended Example below to check how it works.

Inputs and Outputs

Next, define the inputs and outputs for your component.

Inputs

You can choose between three input options:

  • set_input_type: This method defines or updates a single input socket for a component instance. It’s ideal for adding or modifying a specific input at runtime without affecting others. Use this when you need to dynamically set or modify a single input based on specific conditions.
  • set_input_types: This method allows you to define multiple input sockets at once, replacing any existing inputs. It’s useful when you know all the inputs the component will need and want to configure them in bulk. Use this when you want to define multiple inputs during initialization.
  • Declaring arguments directly in the run() method. Use this method when the component’s inputs are static and known at the time of class definition.

Outputs

You can choose between two output options:

  • @component.output_types: This decorator defines the output types and names at the time of class definition. The output names and types must match the dict returned by the run() method. Use this when the output types are static and known in advance. This decorator is cleaner and more readable for static components.
  • set_output_types: This method defines or updates multiple output sockets for a component instance at runtime. It’s useful when you need flexibility in configuring outputs dynamically. Use this when the output types need to be set at runtime for greater flexibility.

Short Example

Here is an example of a simple minimal component setup:

from haystack import component

@component
class WelcomeTextGenerator:
  """
  A component generating personal welcome message and making it upper case
  """
  @component.output_types(welcome_text=str, note=str)
  def run(self, name:str):
    return {"welcome_text": f'Hello {name}, welcome to Haystack!'.upper(), "note": "welcome message is ready"}

Here, the custom component WelcomeTextGenerator accepts one input: name string and returns two outputs: welcome_text and note.

Extended Example

Click on the Recipe below to see how to create two custom components and connect them in a Haystack pipeline.