Python bindings for AgenticComm — agent-to-agent communication engine
Project description
AgenticComm Python SDK
Python SDK for AgenticComm -- portable binary communication for AI agents. Channel-based messaging, zero dependencies.
Install
pip install agentic-comm
Quick Start
from agentic_comm import CommStore
store = CommStore("my_agents.acomm")
print(store.info())
Core Operations
from agentic_comm import CommStore, Channel, Message
store = CommStore("my_agents.acomm")
# Channel management
store.create_channel("task-queue", description="Work items")
channels = store.list_channels()
# Send messages
store.send("task-queue", "Build the login page")
store.send("task-queue", "Review PR #42")
# Receive messages
messages = store.receive("task-queue")
for msg in messages:
print(f"[{msg.timestamp}] {msg.content}")
# Search
results = store.search("login")
# Broadcast
store.broadcast("System update: v1.2.0 deployed")
Subscriptions
# Subscribe an agent to a channel
store.subscribe("task-queue", "worker-agent-1")
# Check subscriptions
subs = store.subscriptions("task-queue")
# Poll all subscribed channels
new_messages = store.poll("worker-agent-1")
Test Coverage
Tests across import validation, model verification, and CLI bridge integration.
Requirements
- Python >= 3.10
acommbinary (Rust core engine) -- install viacargo install agentic-comm
Documentation
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
agentic_comm-0.1.0.tar.gz
(8.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentic_comm-0.1.0.tar.gz.
File metadata
- Download URL: agentic_comm-0.1.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bd64c30face86d95e55bbada89baf85747a4d8fd2c68c5572484f5bc50eaea3
|
|
| MD5 |
52619727a1c6bed6d6350cbbade8b4f5
|
|
| BLAKE2b-256 |
57a14432804f082c15f9dc7dd8c8381d172d7fd87e98125246d6c3f62055b3db
|
File details
Details for the file agentic_comm-0.1.0-py3-none-any.whl.
File metadata
- Download URL: agentic_comm-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7cf459ba8a7709f0b4cbbdaf88fec610dc15cdcd2e9ca679953ec6a112b9173
|
|
| MD5 |
f1b25dfbfbd20d4b7529d870fd066e67
|
|
| BLAKE2b-256 |
ddec11d933549b00dc38aeff7bfdd30ab2830ab4387c72337c93293806ea5f6a
|