Skip to main content

HipCortex Python SDK (v0.5.1)

Persistent causal topological memory, recursive Bayesian world-model prediction (/worldmodel/rollout), and automatic FSM skill compilation for autonomous AI agents.

Runs against the standalone local Rust binary (http://127.0.0.1:3030) with 0.48–0.61 ms p50 write latency, SHA-256 Merkle audit chains, and Headroom context budgeting (59–88% token savings).


🚀 Installation

pip install hipcortex
hipcortex doctor   # verify server health + version after install
hipcortex install  # wizard: MCP hosts + copies ~/.hipcortex-mcp/server.py (18 tools)
hipcortex channels # honesty matrix (native / mcp / framework / guide)

Version matrix: product pip/Cargo/MCP serverInfo = 0.5.1; VS Code VSIX = 0.5.7 (release). See docs/channels.md.


⚡ Quick Start: Multi-Tier Memory & World Model Prediction

from hipcortex import HipCortexClient

client = HipCortexClient(base_url="http://127.0.0.1:3030")

# 1. Multi-Tier Memory Ingestion (5 verified memory tiers)
client.add_memory(
    actor="agent",
    action="configured",
    target="jwt_token_ttl=3600",
    record_type="Working",  # Mapped natively to Temporal tier
    priority="high"
)

client.add_memory(
    actor="agent",
    action="established",
    target="All database migrations must run inside transactions",
    record_type="Semantic", # Mapped natively to Symbolic/LongTerm tier
    priority="pinned"
)

# 2. Check SelfModel Execution Capacity Gates before running risky actions
if client.can_execute("rollout"):
    print("Health check passed — engine ready for simulation")

# 3. World Model Trajectory Rollout Prediction (POST /worldmodel/rollout)
rollout_result = client.rollout(
    initial_state={"db_status": "locked", "active_tx": 1},
    actions=["rollback_tx", "release_lock", "retry_migration"]
)
print("Predicted outcome:", rollout_result)

🧠 Proactive CodeAct Harness & Live Beliefs

For autonomous agent harnesses (LangChain, LlamaIndex, CrewAI, AutoGen), query the topological substrate before reasoning:

# Query live causal beliefs and Top-K topological context (Personalized PageRank)
context = client.context(query="database migrations", actor="agent", limit=5)
print("Active Topological Context:\n", context)

# Store multi-hop reasoning or CoT reflection
client.add_memory(
    actor="agent",
    action="reflected",
    target="Migration failed due to missing index on users.email",
    record_type="Causal"
)

🧩 Framework Integrations

LangChain (ConversationBufferMemory drop-in)

from hipcortex.langchain_memory import HipCortexMemory

memory = HipCortexMemory(session_id="session-42", url="http://127.0.0.1:3030")

LlamaIndex (ChatStore)

from hipcortex.llamaindex_storage import HipCortexStorageContext

storage_context = HipCortexStorageContext.from_defaults(client=client)

CrewAI (Remember & Recall Tools)

from hipcortex.adapters.crewai import HipCortexRememberTool, HipCortexRecallTool

tools = [HipCortexRememberTool(client=client), HipCortexRecallTool(client=client)]

AutoGen (Memory Hook)

from hipcortex.adapters.autogen import HipCortexAutoGenMemory

mem = HipCortexAutoGenMemory(client=client, agent_id="researcher")
agent.register_hook("process_message_before_send", mem.on_message_sent)

📊 Server Statistics & GDPR Right-to-Forget

# Get Merkle hash chain status and tier counts
stats = client.stats()
print("Memory statistics:", stats)

# Erase all records for a specific actor (GDPR compliant)
client.forget("agent")

Download files

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

Source Distribution

hipcortex-0.5.1.tar.gz (105.3 kB view details)

Uploaded Source

Built Distribution

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

hipcortex-0.5.1-py3-none-any.whl (85.1 kB view details)

Uploaded Python 3

File details

Details for the file hipcortex-0.5.1.tar.gz.

File metadata

  • Download URL: hipcortex-0.5.1.tar.gz
  • Upload date:
  • Size: 105.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for hipcortex-0.5.1.tar.gz
Algorithm Hash digest
SHA256 08762aeb2321a88479811be66a6640d893a4afb2dd029fc52e7a70ce5ad73a47
MD5 b9d93ba1a74eb55d2926b8853f86c176
BLAKE2b-256 dccf485464d9121699f891eb27b108895db5d53e43ebee45a3f7644a63b6b674

See more details on using hashes here.

File details

Details for the file hipcortex-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: hipcortex-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 85.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for hipcortex-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 197c41ebddc9df7ff3302096c18d2a3c02ea89f52f1e08875f1f286c8322679d
MD5 722c76d6eef90cf6b531eca15cb13aa1
BLAKE2b-256 f2d4d933b193801ffc3398484cf7b80260b0034ea1f227af5a3c11c9b50738b9

See more details on using hashes here.

Release history Release notifications | RSS feed

0.5.2

2 files

This release

0.5.1 This release

2 files

0.5.0

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

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