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.10+ 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

Core

  • 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
  • Async-First - Built for high-performance async/await patterns

Orchestration

  • Chain-of-Thought - Pluggable reasoning strategies
  • Fractal Agents - Nest agents as workers with recursion limits
  • Squad Patterns - Pre-configured agent factories
  • Blueprints - Constrain execution to specific workflows

Persistence & Memory

  • SQLite/Postgres - Production-grade persistence
  • Time-Travel Debugging - Fork sessions at any checkpoint
  • Vector Memory - Semantic search with pluggable embedders

Swarm Intelligence (v1.8.0)

  • Delta Protocol - Incremental artifact patching with search-replace
  • Map-Reduce - Parallel sub-agent execution with conflict resolution
  • Branch-Merge - Fork states, work in isolation, merge results

Developer Experience

  • Interactive TUI - Textual-based Mission Control dashboard
  • CLI Tools - Project scaffolding and optimization
  • Session Replay - Record and replay for debugging

Production

  • Runtime Security - Explicit acknowledgment for code execution
  • Cost Control - Budget middleware with LiteLLM pricing
  • OpenTelemetry - Distributed tracing

Ecosystem

  • LiteLLM Integration - 100+ LLM providers
  • LangChain Adapter - Wrap LangChain tools as Workers
  • LlamaIndex Adapter - Wrap QueryEngines as Workers
  • FastAPI Dependencies - Easy API integration
  • Model Context Protocol - Connect to MCP servers

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:

from blackboard.persistence import SQLitePersistence

# Use SQLite for production (supports concurrent access)
persistence = SQLitePersistence("./blackboard.db")
await persistence.initialize()
orchestrator.set_persistence(persistence)

# Save with ID
await persistence.save(state, "session-123")

# Resume later
state = await persistence.load("session-123")
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.8.0.tar.gz (229.0 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.8.0-py3-none-any.whl (203.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: blackboard_core-1.8.0.tar.gz
  • Upload date:
  • Size: 229.0 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.8.0.tar.gz
Algorithm Hash digest
SHA256 05c213a92724a787a09883af261d6f6271b2228e3cb0ebd70be079cfc3ada9f6
MD5 3f5bdd0569455292cfce344749f411df
BLAKE2b-256 af4133aa890c23f86a3000ab9071a6a581e6fb9915f19821d7608326c47cf718

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: blackboard_core-1.8.0-py3-none-any.whl
  • Upload date:
  • Size: 203.7 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.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7157a543d62bd342ea24eb72bd9b25dd9d5a6de87627d16f174d7f9b1835b705
MD5 0423ad21c880c87706830cca01222f5c
BLAKE2b-256 146043a217847feeef2759570f3ca03d10539b6cb87920e5c815f18ec959d7cf

See more details on using hashes here.

Provenance

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