skillfed

honcho-ai

Official DX Optimized Python SDK for Honcho

honcho-ai v2.3.0 717.6K downloads/30d#5,243 on PyPI6,649
Permissive license Apache-2.0 Active released

What it is and what it does

Honcho is the official Python SDK for a conversational memory platform designed to manage complex multi-party interactions. It abstracts away the infrastructure for storing and retrieving conversation context, allowing developers to build AI applications that maintain persistent memory of interactions across multiple participants (peers) and conversation sessions. The SDK provides high-level abstractions for creating peers (conversation participants), organizing messages into sessions, and querying conversation context from different perspectives—enabling features like theory-of-mind reasoning where one participant can reason about what another knows.

The package wraps HTTP calls to a remote Honcho service via httpx and uses pydantic for data validation. It supports both synchronous and asynchronous workflows, metadata tagging, and format conversion to OpenAI and Anthropic message schemas for downstream LLM integration. Installation is straightforward, dependencies are minimal, and the library targets Python 3.8 and later.

Use it for:

  • Build multi-agent conversational systems where agents need to reason about what other agents know.
  • Implement customer support chatbots that maintain conversation history across multiple sessions and participants.
  • Create collaborative AI applications where multiple users and assistants interact with persistent context.
  • Develop conversational AI that tracks user preferences and history across separate conversations.
  • Query conversation state from different perspectives for theory-of-mind reasoning in dialogue systems.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python SDK for the Honcho conversational memory platform, enabling management of peers, sessions, and conversation context with persistent memory across multi-party interactions.

Yes. The package is actively maintained, has low install friction, carries a permissive license, and solves a real problem for multi-party conversational AI. It is well-positioned in the top 15000 packages by download volume. The main consideration is that it requires a working Honcho backend service and valid API credentials, so it is only suitable if you are already committed to using the Honcho platform.

Install

honcho-ai on PyPI

pip

pip install honcho-ai

uv

uv add honcho-ai

poetry

poetry add honcho-ai

Installing honcho-ai

Before you install

Low install friction with a pure-Python wheel distribution. Active maintenance with a recent release (3 days old) and strong community engagement (6649 stars). Dependencies are lightweight and well-established (httpx, pydantic, typing-extensions).

License in practice

Apache-2.0 permissive license allows commercial use, modification, and distribution with minimal restrictions—suitable for most projects.

Quickstart

pip install honcho-ai

from honcho import Honcho

client = Honcho(api_key="your-api-key")
alice = client.peer("alice")
bob = client.peer("bob")
session = client.session("conversation-1")
session.add_messages([alice.message("Hello"), bob.message("Hi")])
response = alice.chat("What did Bob say?")

Requires a valid Honcho API key and network access to the Honcho service.

Verify before relying

  • Whether the Honcho backend service is self-hostable or cloud-only.
  • Pricing and rate limits for API calls beyond free tier.
  • Latency characteristics for real-time conversational use cases.
  • Data retention and privacy guarantees for stored conversations.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies 3 — httpx, pydantic, typing-extensions
Maintenance actively maintained — 3 days since the last release
Last repo commit
First released
Downloads 717,590/month — #5,243 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: honcho_ai-2.3.0-py3-none-any.whl

Intended Audience :: DevelopersOperating System :: MacOSOperating System :: Microsoft :: WindowsOperating System :: OS IndependentOperating System :: POSIXOperating System :: POSIX :: LinuxProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Software Development :: Libraries :: Python ModulesTyping :: Typed

Tags

conversational memory managementmulti-party conversation contextpersistent chat history sdkpeer and session managementtheory of mind conversationhoncho api clientconversation state tracking
conversational-aimemory-managementmulti-agent

More Python Modules packages