Whisperer

Actions StatusHex.pmDocumentation

Whisperer is an unopionated multi-agent framework in Elixir

Features

Workflow Structure

Workflow Struture

Key Components

Orchestrator

The Orchestrator is the main component of Whisperer. It is responsible for managing the lifecycle of agents and orchestrating the communication between them. The Orchestrator is the entry point for all agents and is responsible for starting, stopping, and monitoring agents.

Agent

An Agent is a worker that performs a specific task. Agents can be implemented in any way you want, as long as they implement the Whisperer.Agent behaviour. Agents can communicate with each other using messages.

Message

A Message is a data structure that is sent between agents. Messages can contain any data you want, as long as it is serializable. Messages are used to communicate between agents and the Orchestrator.

Sequence

A Sequence is a collection of agents that are executed in a specific order. Sequences can be used to model complex workflows and orchestrate the work of multiple agents.

If available in Hex, the package can be installed by adding whisperer to your list of dependencies in mix.exs:

def deps do
  [
    {:whisperer, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/whisperer.