Runtime¶
Assembles and manages the full Civitas runtime. Wires transport, registry, serializer, tracer, plugins, and the supervision tree.
See Deployment and Topology & CLI for usage.
civitas.runtime.Runtime(supervisor=None, transport='in_process', serializer=None, model_provider=None, tool_registry=None, state_store=None, metrics=None, exporters=None, zmq_pub_addr='tcp://127.0.0.1:5559', zmq_sub_addr='tcp://127.0.0.1:5560', zmq_start_proxy=True, nats_servers='nats://localhost:4222', nats_jetstream=False, nats_stream_name='AGENCY', components=None)
¶
Assembles and manages the full Civitas runtime.
Startup sequence (from Implementation Guide §3): 1. Read configuration 2. Create Serializer 3. Create Tracer 4. Create Transport 5. Create Registry 6. Create MessageBus 7. Create plugin instances 8. Instantiate / wire all AgentProcesses 9. Register all AgentProcesses in Registry 10. Start Transport 11. Walk supervision tree bottom-up, start each agent 12. Start all Supervisors 13. Runtime is ready
Source code in civitas/runtime.py
from_config(path, agent_classes=None)
classmethod
¶
Build a Runtime from a YAML topology file.
The agent_classes dict maps type strings (e.g. "MyAgent") to the
actual Python class. If not provided, types are resolved via
importlib from dotted module paths (e.g. "myapp.agents.MyAgent").
Source code in civitas/runtime.py
start()
async
¶
Start the runtime following the canonical initialization sequence.
Source code in civitas/runtime.py
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | |
stop()
async
¶
Shutdown sequence: stop agents, transport, flush tracer.
Source code in civitas/runtime.py
ask(agent_name, payload, timeout=30.0, message_type='message')
async
¶
Send a message to an agent and await a reply.
Source code in civitas/runtime.py
send(agent_name, payload, message_type='message')
async
¶
Fire-and-forget: send a message to an agent.
Source code in civitas/runtime.py
get_agent(name)
¶
Return the live AgentProcess instance by name, or None.
O(1) lookup via the agents-by-name dict built during start(). Use this when you need to inspect process state (e.g. status). For routing messages use runtime.send/ask instead.
Source code in civitas/runtime.py
all_agents()
¶
Return all AgentProcess instances in the supervision tree.
print_tree()
¶
Return an ASCII representation of the supervision tree.
Source code in civitas/runtime.py
spawn(supervisor_name, agent_class, name, config=None, *, wait=True)
async
¶
Spawn a dynamic agent via the named DynamicSupervisor.
Returns the agent name on success. Raises SpawnError on failure.
With wait=False the call returns as soon as the child's task exists,
before on_start() completes; a later start failure is delivered to the
spawner via on_child_terminated (R1 · D2).
Source code in civitas/runtime.py
despawn(supervisor_name, name)
async
¶
Hard-stop a dynamic child via the named DynamicSupervisor.
Source code in civitas/runtime.py
stop_agent(supervisor_name, name, drain='current', timeout=30.0)
async
¶
Soft-stop a dynamic child via the named DynamicSupervisor.
Source code in civitas/runtime.py
civitas.components.ComponentSet(transport, registry, serializer, tracer, store=None, model_provider=None, tool_registry=None, audit_sink=None, metrics=None, span_queue=None, export_backend=None)
dataclass
¶
Assembled infrastructure wiring for a single Runtime or Worker.
MessageBus is derived automatically from the other four fields in post_init — callers should not construct it separately.
Attributes:
| Name | Type | Description |
|---|---|---|
transport |
Any
|
Transport layer (InProcess, ZMQ, or NATS). |
registry |
Registry
|
LocalRegistry for agent name → address mapping. |
serializer |
Serializer
|
Serializer used by transport and bus. |
tracer |
Tracer
|
Tracer instance for span emission. |
store |
Any
|
StateStore for agent checkpoint/restore. None means no persistence; callers should default to InMemoryStateStore when appropriate. |
model_provider |
Any
|
Injected into agent.llm at startup. |
tool_registry |
Any
|
Injected into agent.tools at startup. |
bus |
MessageBus
|
MessageBus built from the other four fields. |
inject(agent)
¶
Inject bus and plugin references into an agent process.
Source code in civitas/components.py
civitas.components.build_component_set(transport_type='in_process', serializer=None, model_provider=None, tool_registry=None, state_store=None, audit_sink=None, metrics=None, exporters=None, zmq_pub_addr='tcp://127.0.0.1:5559', zmq_sub_addr='tcp://127.0.0.1:5560', zmq_start_proxy=True, zmq_curve_config=None, nats_servers='nats://localhost:4222', nats_jetstream=False, nats_stream_name='AGENCY', nats_tls_config=None)
¶
Build a ComponentSet from primitive configuration values.
Called by Runtime.start() and Worker.start() when no pre-built ComponentSet is provided. Handles serializer selection, transport construction, and store defaulting.
Source code in civitas/components.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | |