Index
hybrid
¶
Hybrid local+cloud paradigms — ported from hybrid-local-cloud-compute.
Each module here registers one agent under @AgentRegistry.register("<name>"):
advisors — executor (cloud) ↔ advisor (local) ↔ executor (cloud)
conductor — zero-shot planner emits a DAG of up to 5 worker calls
minions — supervisor (cloud) ↔ worker (local) reactive loop
archon — layered (generator → ranker → fuser) inference-time search
skillorchestra — eval orchestrator: skill-routed search→reasoning→answer loop
toolorchestra — prompted multi-turn dispatcher over a mixed tool/model pool
All agents share :class:LocalCloudAgent as the base. They are bench-agnostic:
the caller formats the prompt (using hybrid_prompts.format_prompt(task, bench)
or the bench's native formatter) and hands it in via run(input=...). Task
metadata that the paradigm needs (a problem statement vs. a question, hints,
etc.) goes through context.metadata.
The original hybrid-local-cloud-compute harness is the reference
implementation and stays untouched — these ports are the OpenJarvis-native
versions of the same paradigms.