Skip to main content

blackboardx

A skeletal blackboard system for Python.

The blackboard architecture came out of HEARSAY-II, a speech understanding system built at Carnegie Mellon in the early 1970s under a DARPA programme. Its difficulty was that a stretch of speech admits several readings, and the knowledge that settles which one is right arrives in unrelated kinds: acoustic, lexical, syntactic, semantic. Which kind will settle a given stretch is not known until that stretch is examined, so the system could not be written as procedures calling one another, because a call fixes what runs next. HEARSAY-II gave its specialists a shared structure to work on instead. Each reads what bears on its own expertise and writes back what it concludes, and none of them calls another.

Later systems kept that arrangement and replaced the knowledge: HASP interpreted sonar rather than speech. H. Penny Nii, surveying blackboard systems in AI Magazine in 1986, named a system skeletal when it supplies the components alone and leaves the knowledge and the control to whoever builds on it.

blackboardx is skeletal in that sense. It supplies the board, which stores what agents write and puts every write in one order, and the control component, which determines who is notified of a change, which writes are admitted, and when the run ends. An application supplies its regions, their opening premise values, the agents the run starts with, an admission rule, a termination predicate, and limits.

The record outlives the run that wrote it. create_model opens a board the store does not hold yet; attach_model opens a run over a board the store already holds, and continues the sequence from where the record ends.

The library also carries both halves of the conversation between a blackboard and agents deployed as their own services: the bodies and operations they share, the piece that answers an agent's request, the piece that sends a notification without making the writer wait, and the client an agent calls with. Your service keeps its own HTTP server, its routes, its authentication, and its database; the library supplies the protocol between them.

An agent reads and writes through AgentBoard, which is the four reads and the three writes without the agent's own name. Control.as_agent returns an AgentBoard for an agent in the same process as the run, and BoardClient is one over HTTP, so an agent body is written once and deployed either way.

What an agent knows is the application's to supply. An agent whose expertise is an algorithm decides in its own code. An agent whose expertise is a language model puts the decision to the model, offering it the board as tools through blackboard.tools, and makes each call the model asks for. The library sends nothing to a model and depends on no provider's package.

The distribution name is blackboardx; the import name is blackboard. The documentation, including the API reference, is at https://moeinroghani.github.io/blackboardx/.

Install

pip install blackboardx
pip install 'blackboardx[postgres]'     # PostgresStore
pip install 'blackboardx[mongodb]'      # MongoStore
pip install 'blackboardx[notifier]'     # sending notifications to agents over HTTP
pip install 'blackboardx[agent]'        # BoardClient, for an agent calling a blackboard
pip install 'blackboardx[conformance]'  # the suite a store of your own is held to

The base install has no runtime dependency. InMemoryStore holds the record in the process, and SqliteStore uses sqlite3 from the standard library. A deployment keeps the record in the database it already runs, and the adapter for that database needs its driver.

Documentation

Installation The extras, and what each one gives you
Quickstart A run in full, and what each step means
Concepts What the board, the control component and a run are
Storage Where the record is kept, and what an adapter owes
Guides Writing an agent, notifying over HTTP, admission rules, ending a run, testing
Serve a blackboard Answering agents that run as their own services
Let a model decide Offering the board to a language model as tools it can call
What it does not do Every limit of this version, in one place
API reference Every exported name

Example

from datetime import timedelta

from blackboard import (
    Agent,
    Level,
    Premise,
    RunLimits,
    Settled,
    SqliteStore,
    create_model,
)

notifications = []

model = create_model(
    board_id="incident-4471",
    store=SqliteStore("incidents.sqlite3"),
    regions=[Level("platform"), Premise("window")],
    premises={"window": ["2026-08-16T20:00", "2026-08-16T22:00"]},
    agents=[Agent(name="ocp", notify=notifications.append)],
    limits=RunLimits(wall_clock=timedelta(minutes=10), idle=timedelta(seconds=1)),
)

(notification,) = notifications
window = model.reader.read_premise("window").value
model.control.write("platform", {"window": window, "findings": ["oom"]}, writer="ocp")
model.control.ack(notification.notification_id, agent="ocp")

assert model.control.wait_closed(timeout=timedelta(seconds=10)) == Settled()

Running that example a second time raises DuplicateRegionError, because the board is already in incidents.sqlite3. attach_model opens a run over the board.

License

Apache-2.0. The license text is in LICENSE, and every distribution carries it.

Download files

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

Source Distribution

blackboardx-0.12.0.tar.gz (337.8 kB view details)

Uploaded Source

Built Distribution

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

blackboardx-0.12.0-py3-none-any.whl (99.3 kB view details)

Uploaded Python 3

File details

Details for the file blackboardx-0.12.0.tar.gz.

File metadata

  • Download URL: blackboardx-0.12.0.tar.gz
  • Upload date:
  • Size: 337.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for blackboardx-0.12.0.tar.gz
Algorithm Hash digest
SHA256 8e9e9a0b6af8765edeb5e5f0cee1ee53aea17cc0494e5a011645b595729eedbf
MD5 d889f0e5eb685e5d62ac84e4917584a2
BLAKE2b-256 6432622e7509c9b5c40b62a9c0388ff3e3df0c882bf728afd5a66823cd376b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboardx-0.12.0.tar.gz:

Publisher: publish.yml on MoeinRoghani/blackboardx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blackboardx-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: blackboardx-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 99.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for blackboardx-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b60a06c41cc888e8d42bf68fa14adef22debbc65c364f1ea53a828f61d557c7a
MD5 a28330a0c1614c7c6c752b6fd46f6a2e
BLAKE2b-256 54f2eff45b4a24911f090759e9c01db659a52e1ac83e1645f1fc907d1763e55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboardx-0.12.0-py3-none-any.whl:

Publisher: publish.yml on MoeinRoghani/blackboardx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.14.1

2 files

0.14.0

2 files

0.13.0

2 files

This release

0.12.0 This release

2 files

0.11.1

2 files

0.10.1

2 files

0.10.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

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