pulsehive 1.0.0

Shared Consciousness SDK for Multi-Agent AI Systems
Documentation

PulseHive — Shared Consciousness SDK for Multi-Agent AI Systems.

This is the meta-crate that re-exports pulsehive-core and pulsehive-runtime. Use feature flags openai and anthropic to include LLM providers.

Quick Start

[dependencies]
pulsehive = { version = "1.0", features = ["openai"] }
use pulsehive::prelude::*;
use pulsehive::HiveMind;

let hive = HiveMind::builder()
    .substrate_path("my_project.db")
    .llm_provider("openai", my_provider)
    .build()?;