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
  • Fractal Agents (v1.6) - Nest agents as workers with recursion limits and trace linking
  • Squad Patterns (v1.6) - Pre-configured agent factories for common tasks
  • SQLite Persistence (v1.6) - Production-grade storage with parent-child sessions
  • Runtime Security (v1.6) - Explicit acknowledgment for unsafe code execution
  • 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.6.0.tar.gz (169.4 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.6.0-py3-none-any.whl (147.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: blackboard_core-1.6.0.tar.gz
  • Upload date:
  • Size: 169.4 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.6.0.tar.gz
Algorithm Hash digest
SHA256 469c3a29b48ff1e56e596fb61f2a445f5320b012e1322be1cfe758c951f8c3b4
MD5 24afd8a40147ba28e15014906d84faa6
BLAKE2b-256 d4c52bb641f449260f180620c015f938b6550aae25f1e2ffedd5178e973e2cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboard_core-1.6.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.6.0-py3-none-any.whl.

File metadata

  • Download URL: blackboard_core-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 147.9 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.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fdbdeaa3be8601a0c93ff55756cd0c854deeac2588a8e9c11a61b6eaa966e40c
MD5 cc427f739534dcece6697ae6b7ac22d9
BLAKE2b-256 4493c69f637f30092270a8200049232f75a45f083a5b3e491c27027e81fa3f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackboard_core-1.6.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