Autonomic resilience kernel for the Cogno cognitive pipeline — circuit breaker, retry/backoff, and a metrics seam behind a signature-agnostic fallback executor
Project description
cogno-homeo
Autonomic resilience kernel for the Cogno cognitive pipeline — circuit breaker, retry/backoff, and a metrics seam behind a signature-agnostic fallback executor.
Named for homeostasis — the body's self-regulation that keeps it stable under stress. Where cogno-anima is the mind and cogno-synapse is the nerve that carries the signal to the models, cogno-homeo is the autonomic layer that keeps those calls alive when providers fail.
Status: alpha — pure-code kernel + unit suite in place.
Pure code: zero dependencies, zero I/O
cogno-homeo orchestrates calls; it never makes one. It knows nothing about LLMs or audio — the result of an attempt is opaque to it. That's exactly why it's shared: both cogno-synapse (text/embeddings) and cogno-vox (STT/TTS) build their fallback chains on the same kernel, instead of each re-implementing the loop.
cogno-synapse ─┐
├─▶ cogno-homeo (breaker + retry + metrics + fallback)
cogno-vox ─────┘
The specialized edge depends on the generic kernel — never the other way around.
The four pieces
| Piece | What it does |
|---|---|
CircuitBreaker |
per-key state machine (closed → open → half-open); stops hammering a dead provider. State behind the StateStore port. |
RetryPolicy |
full-jitter exponential backoff (pure math; the sleep happens in the executor). |
MetricsSink (Protocol) |
reliability telemetry seam — one AttemptRecord per attempt. Host plugs Prometheus/logs; default discards. |
resilient_call(...) |
the signature-agnostic executor that composes the three over an ordered candidate list. |
resilient_call — one executor, any signature
You pass the candidates and a one-line attempt closure; the executor adds breaker + retry + metrics on top. The per-signature bit stays a lambda, so the same kernel serves text and audio:
from cogno_homeo import resilient_call, CircuitBreaker, RetryPolicy
# text (cogno-synapse):
await resilient_call(backends, lambda b: b.generate(system, prompt),
breaker=CircuitBreaker(), policy=RetryPolicy(max_retries=2))
# audio (cogno-vox) — same kernel, different attempt + a "non-empty" success rule:
await resilient_call(transcribers, lambda t: t.transcribe(audio, filename),
is_success=lambda r: bool(r))
First acceptable result wins; if all fail the last exception propagates; if nothing was eligible (empty chain / all breaker-open) it raises NoCandidateAvailable. With no policy/breaker/metrics, it degrades to the historical "try each once, fail over" loop — so wrapping an existing chain changes nothing until you opt in.
Distributed breaker state (host-injected)
The breaker keeps state in-memory per process by default. To share provider health across workers, implement the StateStore port over your store (e.g. Redis) and inject it — the kernel stays pure:
class RedisStateStore: # satisfies StateStore (structural)
def get(self, key): ...
def set(self, key, state): ...
CircuitBreaker(store=RedisStateStore(redis_client))
The breaker key is an opaque string the host composes — e.g. openai:global for a shared key vs openai:byok:{tenant} to isolate a tenant's own credential so one bad key can't trip the breaker for everyone. cogno-homeo never interprets it.
Install
pip install cogno-homeo # zero third-party runtime deps
pip install -e ".[dev]" # tests + lint + type-check
The Cogno ecosystem
cogno-homeo is one organ of Cogno — a family of
small, composable, Apache-2.0 libraries that together form a complete
conversational-agent platform. Each library owns a single concern and stays
infra-agnostic; a host assembles them into a running agent:
The open-source libraries are the organs; the host is the body that joins
them. Our reference host — cogno-host, with its cogno-ui dashboard — is the
private product layer, but it holds no special powers: everything it does rides
on the public seams documented in each library's docs/HOST_INTEGRATION.md, so
you can assemble a body of your own.
Test
pytest tests/unit -q
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
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 cogno_homeo-0.1.0.tar.gz.
File metadata
- Download URL: cogno_homeo-0.1.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5edd6558e416f9cca26c9feec27015471ea75393a516a1d357134db0d7818576
|
|
| MD5 |
33b27c1d538ac6d893fdd05a34b5638b
|
|
| BLAKE2b-256 |
9f4d5c26ea07b7a72da5caedc8e831b2d510c6f39d257329d593a5a97f1d9a5a
|
File details
Details for the file cogno_homeo-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cogno_homeo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71880a44c440ffb6715398f0e26a08f016422fb187321dd71b2a448965319211
|
|
| MD5 |
b3dec3d0a139ce29e6d1430605898630
|
|
| BLAKE2b-256 |
674df3525213ce676a961942b899f03429a16b6a40ed204b1120ae3aea918043
|