Skip to main content

A Python SDK implementing the Blackboard Pattern for LLM-powered multi-agent systems

Project description

Blackboard-Core

A Python SDK for building LLM-powered multi-agent systems using the Blackboard Pattern.

Python 3.9+ License: MIT PyPI version

Blackboard TUI Demo

What is Blackboard-Core?

Blackboard-Core provides a centralized state architecture for multi-agent AI systems. Instead of agents messaging each other directly, all agents read from and write to a shared Blackboard (state), while a Supervisor LLM orchestrates which agent runs next.

┌─────────────────────────────────────────────────────────────┐
│                       ORCHESTRATOR                          │
│  ┌─────────────┐    ┌──────────────────────────────────┐    │
│  │  Supervisor │──▶│          BLACKBOARD              │    │
│  │    (LLM)    │    │  • Goal      • Artifacts         │    │
│  └─────────────┘    │  • Status    • Feedback          │    │
│         │           │  • History   • Metadata          │    │
│         ▼           └──────────────────────────────────┘    │
│  ┌─────────────────────────────────────────────────────┐    │
│  │                       WORKERS                       │    │
│  │  [Writer]  [Critic]  [Refiner]  [Researcher]  ...   │    │
│  └─────────────────────────────────────────────────────┘    │
└─────────────────────────────────────────────────────────────┘

Features

  • Centralized State - All agents share a typed Pydantic state model
  • LLM Orchestration - A supervisor LLM decides which worker runs next
  • Magic Decorators - Define workers with simple typed functions (auto-generated schemas)
  • Async-First - Built for high-performance async/await patterns
  • Chain-of-Thought - Pluggable reasoning strategies for smarter decisions
  • State Idempotence - Save, load, and resume sessions reliably
  • LiteLLM Integration - 100+ LLM providers via LiteLLMClient
  • Model Context Protocol - Connect to MCP servers for external tools
  • OpenTelemetry - Distributed tracing with span hierarchy
  • Live TUI - Real-time terminal visualization

Installation

pip install blackboard-core

# Optional extras
pip install blackboard-core[mcp]        # Model Context Protocol
pip install blackboard-core[telemetry]  # OpenTelemetry
pip install blackboard-core[chroma]     # ChromaDB for memory
pip install blackboard-core[serve]      # FastAPI server
pip install blackboard-core[all]        # Everything

Quick Start

from blackboard import Orchestrator, worker
from blackboard.llm import LiteLLMClient

# Define workers with simple type hints - schemas are auto-generated!
@worker
def write(topic: str) -> str:
    """Writes content about a topic."""
    return f"Article about {topic}..."

@worker
def critique(content: str) -> str:
    """Reviews content for quality."""
    return "Approved!" if len(content) > 50 else "Needs more detail"

# Create orchestrator
llm = LiteLLMClient(model="gpt-4o")
orchestrator = Orchestrator(llm=llm, workers=[write, critique])

# Run
result = orchestrator.run_sync(goal="Write about AI safety")
print(result.artifacts[-1].content)

Core Concepts

Concept Description
Blackboard Shared state containing goal, artifacts, feedback, and metadata
Worker An agent that reads state and produces artifacts or feedback
Orchestrator Manages the control loop and calls the supervisor LLM
Supervisor The LLM that decides which worker to call next
Artifact Versioned output produced by a worker
Feedback Review/critique of an artifact

The Magic Decorator

Define workers with just type hints - no boilerplate:

from blackboard import worker
from blackboard.state import Blackboard

# Simple function - schema auto-generated
@worker
def calculate(a: int, b: int, operation: str = "add") -> str:
    """Performs math operations."""
    if operation == "add":
        return str(a + b)
    return str(a - b)

# With state access
@worker
def summarize(state: Blackboard) -> str:
    """Summarizes current progress."""
    return f"Goal: {state.goal}, Artifacts: {len(state.artifacts)}"

# Async support
@worker
async def research(topic: str) -> str:
    """Researches a topic online."""
    # ... async HTTP calls
    return f"Research on {topic}"

Chain-of-Thought Reasoning

Enable smarter decision-making with CoT:

from blackboard import Orchestrator, BlackboardConfig
from blackboard.reasoning import ChainOfThoughtStrategy

# Enable Chain-of-Thought via config
config = BlackboardConfig(reasoning_strategy="cot")
orchestrator = Orchestrator(llm=llm, workers=workers, config=config)

# Or use the strategy directly
from blackboard.reasoning import ChainOfThoughtStrategy

strategy = ChainOfThoughtStrategy()
# The LLM will now output <thinking>...</thinking> before deciding

State Persistence

Save and resume sessions reliably:

# Save session
result.save_to_json("session.json")

# Resume later - state is preserved exactly
state = Blackboard.load_from_json("session.json")
result = await orchestrator.run(state=state)

Advanced Features

Middleware

from blackboard.middleware import BudgetMiddleware, HumanApprovalMiddleware

orchestrator = Orchestrator(
    llm=my_llm,
    workers=[...],
    middleware=[
        BudgetMiddleware(max_tokens=100000),
        HumanApprovalMiddleware(require_approval_for=["Deployer"])
    ]
)

Memory System

from blackboard.memory import SimpleVectorMemory, MemoryWorker
from blackboard.embeddings import OpenAIEmbedder

memory = SimpleVectorMemory(embedder=OpenAIEmbedder())
worker = MemoryWorker(memory=memory)

Model Context Protocol

from blackboard.mcp import MCPServerWorker

# Local via stdio
fs_server = await MCPServerWorker.create(
    name="Filesystem",
    command="npx",
    args=["-y", "@modelcontextprotocol/server-fs", "/tmp"]
)

# Remote via SSE
remote = await MCPServerWorker.create(
    name="RemoteAPI",
    url="http://mcp-server:8080/sse"
)

# Each MCP tool becomes a worker
workers = fs_server.expand_to_workers()

Blueprints (Workflow Patterns)

from blackboard.flow import SequentialPipeline, Router

# Force A → B → C execution
pipeline = SequentialPipeline([Searcher(), Writer(), Critic()])

# Let supervisor choose best worker
router = Router([MathAgent(), CodeAgent(), ResearchAgent()])

result = await orchestrator.run(goal="...", blueprint=pipeline)

Configuration

Use environment variables or direct config:

export BLACKBOARD_MAX_STEPS=50
export BLACKBOARD_REASONING_STRATEGY=cot
export BLACKBOARD_VERBOSE=true
from blackboard import BlackboardConfig

config = BlackboardConfig.from_env()
# Or direct:
config = BlackboardConfig(
    max_steps=50,
    reasoning_strategy="cot",
    enable_parallel=True
)

Documentation

See DOCS.md for the complete API reference and advanced usage guide.

License

MIT License - see LICENSE for details.

Project details


Download files

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

Source Distribution

blackboard_core-1.5.0.tar.gz (155.3 kB view details)

Uploaded Source

Built Distribution

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

blackboard_core-1.5.0-py3-none-any.whl (136.1 kB view details)

Uploaded Python 3

File details

Details for the file blackboard_core-1.5.0.tar.gz.

File metadata

  • Download URL: blackboard_core-1.5.0.tar.gz
  • Upload date:
  • Size: 155.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blackboard_core-1.5.0.tar.gz
Algorithm Hash digest
SHA256 91788a8a573ec0374c3ed7900754067e3af1569ebd0bc9af8b02c4ea210d4810
MD5 2fe71d492dbebca00ba4b98c3480e9ad
BLAKE2b-256 3c47fc5c149baa3d437d271753b70e46dda58688e82e9fe498d8e74a9e03b111

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboard_core-1.5.0.tar.gz:

Publisher: publish.yml on hemantsingh443/blackboard-core

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

File details

Details for the file blackboard_core-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: blackboard_core-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 136.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blackboard_core-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ba3fbb49290e4fe8ac530c2cdf284cb599ef62ea956f7a377ccbbe9ca880b2bf
MD5 57df58e0a54743065a2827700aceae14
BLAKE2b-256 bdca78ea160239c97d8fc8cd040860f1701890d8e0bb3ec86a4758dc6f086ff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboard_core-1.5.0-py3-none-any.whl:

Publisher: publish.yml on hemantsingh443/blackboard-core

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

Supported by

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