Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

ovos-hivemind-pipeline-plugin

When a local OVOS install can't handle an utterance, ask a smarter HiveMind hub.

This is an OVOS intent pipeline plugin (opm.pipeline entry point). It sits at a configurable position in the OVOS pipeline and forwards unmatched utterances to a remote HiveMind-core hub. The hub processes the utterance with its own skills/agent and speaks the answer through the local OVOS TTS or (in slave mode) directly via the shared bus.

Typical use case: a lightweight OVOS satellite (e.g. a Pi Zero) that escalates anything beyond its local skills to a powerful central hub.

Install

pip install ovos-hivemind-pipeline-plugin

Quickstart

1. Register a client on the HiveMind hub

On the machine running hivemind-core:

hivemind-core add-client
# note the Access Key and Password

2. Set the identity on the OVOS satellite

On the satellite (where OVOS and this plugin run):

hivemind-client set-identity \
  --key <access_key> \
  --password <password> \
  --host <hub_ip> --port 5678 --siteid satellite

Verify the connection:

hivemind-client test-identity
# should print: == Identity successfully connected to HiveMind!

3. Add the plugin to the OVOS pipeline

Edit ~/.config/mycroft/mycroft.conf:

{
  "intents": {
    "pipeline": [
      "ovos-padatious-pipeline-plugin-high",
      "ovos-adapt-pipeline-plugin",
      "ovos-padatious-pipeline-plugin-medium",
      "ovos-commonqa-pipeline-plugin",
      "ovos-hivemind-pipeline-plugin"
    ],
    "ovos-hivemind-pipeline-plugin": {
      "name": "Hive Mind",
      "confirmation": true,
      "slave_mode": false,
      "allow_selfsigned": false
    }
  }
}

Place "ovos-hivemind-pipeline-plugin" near the end of the pipeline so it only fires when local intent engines have already failed.

Configuration

All keys are under "ovos-hivemind-pipeline-plugin" in mycroft.conf.

Key Type Default Description
name string "Hive Mind" Name spoken in the confirmation dialog.
confirmation bool true Speak a confirmation before sending the utterance to HiveMind.
slave_mode bool false Share the local OVOS bus with the hub for passive monitoring and bidirectional message injection.
allow_selfsigned bool false Accept self-signed TLS certificates on the HiveMind connection.

How it works

When the OVOS pipeline reaches this plugin, match() always returns a match — it acts as a catch-all. The match queues a hivemind:ask event. ask_hivemind() optionally speaks a confirmation dialog, then calls hm.emit_mycroft(utterance) to forward the utterance to the hub.

The hub processes the utterance and, depending on slave_mode:

  • slave_mode disabled (default): the hub's speak messages are forwarded back via the HiveMind WebSocket and re-emitted on the local OVOS bus by on_speak.
  • slave_mode enabled: the hub has direct bus access and handles TTS itself.

Slave mode

In slave mode the hub receives all local bus messages for passive monitoring and can inject arbitrary messages into the local OVOS bus.

To send a message from the satellite to the hub (upstream):

bus.emit(Message("hive.send.upstream", {
    "msg_type": "bus",
    "payload": some_message.serialize()
}))

To push a message from the hub to the satellite (downstream). The hub's hivemind-ovos-agent-plugin handles this message:

bus.emit(Message("hive.send.downstream", {
    "msg_type": "bus",
    "payload": some_message.serialize(),
    "peer": "<peer id>"
}))

The peer value is the peer id of one connected satellite (HiveMindClientConnection.peer in hivemind-core). The id is name::session_id. If two connections share one access key and ask for the same id, hivemind-core adds a ::<8 hex> suffix to the second id. A bus message is sent only when peer is set:

  • If peer is missing, nothing is sent and no error is emitted.
  • If peer names no connected satellite, the hub emits "hive.client.send.error".
  • The hub does not check that peer is the satellite you mean. An id can name a different connected satellite. An old id can belong to a new connection with the same name::session_id. In both cases the hub sends the message to that connection and emits no error.
  • Do not build the peer id. Read it from message.context["source"] of a message that the satellite sent. hivemind-core sets source and peer to the peer id of the sender.
  • A propagate or broadcast message goes to all connected satellites.
  • An escalate message is dropped and no error is emitted.
  • If msg_type is missing, the handler raises an error and sends nothing.

This also enables nested hives: a device can run both hivemind-core (as a hub for its own satellites) and this plugin (as a satellite to a larger hub).

Documentation

License

Apache 2.0.

Download files

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

Source Distribution

ovos_hivemind_pipeline_plugin-0.1.1a5.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

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

ovos_hivemind_pipeline_plugin-0.1.1a5-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file ovos_hivemind_pipeline_plugin-0.1.1a5.tar.gz.

File metadata

File hashes

Hashes for ovos_hivemind_pipeline_plugin-0.1.1a5.tar.gz
Algorithm Hash digest
SHA256 7f78fc7be036443ccb0bf00d195ca5470804c696252a4a3902c4c4b7bec0a962
MD5 50ce7d4aa1bc25f5efa82bff5356a253
BLAKE2b-256 4bc3fc6d35a147f9ca85247a787f88e849f067197375a31bba60c248a4863c1f

See more details on using hashes here.

File details

Details for the file ovos_hivemind_pipeline_plugin-0.1.1a5-py3-none-any.whl.

File metadata

File hashes

Hashes for ovos_hivemind_pipeline_plugin-0.1.1a5-py3-none-any.whl
Algorithm Hash digest
SHA256 4f44d43510a56e17638c020fee1f60c4a2f9e5aef3f8b9f0ea2effe8d3746e4d
MD5 8b5835352d1fc0e8cd9b54086befb3d0
BLAKE2b-256 b268681da5136dcd663defa8ce69f6f0fcb8c558f5d4e38f99b9836ccdb04b74

See more details on using hashes here.

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page