Skip to main content

ChaosCypher Neuron

Background task processing — unified worker cell

Neuron is ChaosCypher's background worker process. A single cc-neuron entry point runs two independently-paced queues in one process:

  • LLM queue — serialized (default 1 concurrent) for chat, embeddings, tool calls, chunk extraction, and per-page vision analysis. Sequential execution avoids overwhelming the LLM provider and keeps priority queueing fair.
  • Operations queue — parallel (default 8 concurrent) for source indexing, imports/exports, workflows, vision finalization, and other CPU/IO-bound tasks that benefit from concurrency.

Tasks are pulled from Valkey via ChaosCypher's own queue client (chaoscypher_core.queue); there is no ARQ, Celery, or RQ dependency.

Installation

# Workspace sync — installs core + cortex + neuron + dev tools
uv sync --all-packages --extra dev

# Single-package mode (neuron + its core dependency only)
uv sync --package chaoscypher-neuron

The repo uses uv workspaces (see root pyproject.toml [tool.uv.workspace]). Install uv via the official installer before running these commands; pip install -e . is not supported.

Usage

# Start the unified worker (both queues)
cc-neuron

# With a custom Valkey instance
QUEUE_HOST=localhost QUEUE_PORT=6379 cc-neuron

The worker auto-detects which queue handlers are registered and polls each queue at its configured concurrency. There is no separate cc-neuron-llm / cc-neuron-ops binary — both queues run in the same process.

Docker

In the all-in-one image, cc-neuron is launched by supervisord alongside cortex, valkey, and nginx. In the multi-container deployments (packages/docker/multi-container/docker-compose.{dev,prod}.yml) the worker runs in its own neuron service:

docker run -e QUEUE_HOST=valkey -e QUEUE_PORT=6379 chaoscypher-neuron

Configuration

Worker behaviour is configured through ChaosCypher's settings layer (env var → settings.yaml in the data dir (/data/settings.yaml inside the app-data Docker volume) → package default). Concurrency and timeouts live under QueueSettings; only the Valkey connection itself is read directly from the environment so the worker can bootstrap before settings are loaded:

QUEUE_HOST=localhost           # Valkey hostname
QUEUE_PORT=6379                # Valkey port
QUEUE_PASSWORD=chaoscypher     # Valkey password
QUEUE_DB=0                     # Valkey logical DB
LOG_LEVEL=INFO
USE_JSON_LOGGING=false

Per-queue concurrency, retry limits, and timeouts are not env-driven. Override them in <data_dir>/workers.yaml (llm_worker: / operations_worker: with max_concurrent, timeout, max_tries; values are clamped to safe ranges) and restart the worker — they are read once at startup and frozen into the QueueWorker. The settings-change listener (chaoscypher:settings:changed) hot-reloads the LLM provider and handler registrations only; it does not resize queue concurrency.

Architecture

Neuron is part of the ChaosCypher neural architecture:

  • Core — domain logic + operational substrate (queue, settings, handlers)
  • Cortex — FastAPI backend that enqueues work
  • Neuron — unified worker that consumes both queues 👈 You are here
  • Interface — React UI

Why one process, two queues?

  • Separate concurrency control. The LLM queue intentionally throttles to 1; the Operations queue parallelises to 8. Running them in the same process avoids container overhead and the need for two scaler knobs while keeping each queue independently paced.
  • Shared resources. Database adapter, LLM provider, settings cache, recovery loops, and the Valkey connection pool are initialised once per process instead of duplicated across two worker images.
  • Startup recovery. A single recovery sweep (SourceRecovery + orphan-task rehydration) runs at boot, not twice.

Task types

LLM queue

  • chat_completion / chat_background — chat completions (interactive and background)
  • tool_execution — execute a tool with the LLM
  • extract_chunk / finalize_extraction — entity / relationship extraction over a chunk + finalize pass
  • vision_page — per-page vision analysis
  • embed_chunks — generate chunk embeddings
  • regenerate_template_embeddings — refresh template embeddings

Operations queue

  • index_document — chunking + entity prep
  • import_ccx / import_commit / import_analysis — package import pipeline
  • export_graph / export_by_sources — package export
  • execute_workflow / execute_step — workflow execution
  • vision_finalize — assemble per-page vision results
  • fetch_url — URL source fetching
  • bulk / reset / cleanup ops — bulk_nodes, bulk_edges, bulk_templates, lexicon_import, recalculate_quality_scores, rebuild_search_indexes, reset_knowledge_base, reset_all, graph_cleanup, cleanup_orphans, build_graph_snapshot

Canonical mapping lives in chaoscypher_core.constants.OPERATION_QUEUE_ROUTING (enforced by lint rule CC044).

Monitoring

# Container logs
docker compose logs -f chaoscypher           # all-in-one (supervisord muxes)
docker compose logs -f neuron                # multi-container neuron service

# Queue depth + per-task status via cortex (must carry an authenticated
# session — nginx auth_request gates /api/v1)
curl http://localhost/api/v1/queue/stats

Development

# Workspace install (from repo root)
uv sync --all-packages --extra dev

# Run tests
uv run pytest packages/neuron

# Auto-restart on source edits (watchdog is not a workspace dependency;
# --with adds it for this run)
uv run --with watchdog watchmedo auto-restart -d packages/neuron/src -p "*.py" -- cc-neuron

Scaling

The all-in-one image runs exactly one cc-neuron instance under supervisord. For horizontal scale-out, use the multi-container deployment and replicate the neuron service:

cd packages/docker/multi-container
docker compose -f docker-compose.prod.yml up -d --scale neuron=4

Each replica polls both queues; Valkey distributes tasks across them.

License

AGPL-3.0 — see the repository LICENSE file.

Release files for chaoscypher-neuron 0.4.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for chaoscypher-neuron 0.4.3
File Size Uploaded
chaoscypher_neuron-0.4.3.tar.gz 49.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for chaoscypher-neuron 0.4.3
File Interpreter ABI Platform
chaoscypher_neuron-0.4.3-py3-none-any.whl Python 3 none any Details

Total release size: 105.5 kB

Release files / chaoscypher_neuron-0.4.3.tar.gz

Download URL chaoscypher_neuron-0.4.3.tar.gz
Size 49.0 kB
Tags Source
SHA-256 checksum
How to use checksums
b06fe04255fdfd1851e2146cef115158864cc2fe2e05513bd4315fe5b3dfde3b
BLAKE2b-256 checksum
How to use checksums
77b4dfb4ff311ec5da678666df962e4b0565e16e8b781f577448e9b3fb25e26f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / chaoscypher_neuron-0.4.3-py3-none-any.whl

Download URL chaoscypher_neuron-0.4.3-py3-none-any.whl
Size 56.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a1ca6b058a2984bc153df045265db390d3a4a5e91aa0c7e013dac9f105124f6e
BLAKE2b-256 checksum
How to use checksums
7ae8d55849f5597d882c663be1fb03e37cebeeb39f26c39f5d6a85c9e4d03063
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.4.3 This release

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.1

2 release files

0.1.0

2 release 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