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, *, process_filter='*')
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").
process_filter (v0.9.2.1 bugfix): a topology node (an agent,
dynamic_supervisor, or flat dotted-path node) MAY carry a
process: <name> tag meaning "this belongs to a different OS
process, started separately." Before this fix, from_config had
no awareness of that tag at all and built EVERY node into the local
tree regardless — silently duplicating whatever a real Worker
process elsewhere also builds for itself (confirmed:
deployment/level2_multi_process/run_supervisor.py, run alone,
registered worker_a/worker_b locally even though they're
process: worker-tagged).
"*"(default): no filtering — build every node regardless of anyprocess:tag. Unchanged from every release before this one; existing callers see no behavior change.None: build only UNTAGGED nodes (noprocess:key at all) — the coordinator/supervisor role in a multi-process topology.- Any other string: build only nodes tagged
process: <that string>— matches whatWorker's own construction path already does via_find_process_agents, exposed here for symmetry/completeness.
Source code in civitas/runtime.py
start()
async
¶
Start the runtime following the canonical initialization sequence.
Source code in civitas/runtime.py
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 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 | |
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', *, fail_if_suspended=False)
async
¶
Send a message to an agent and await a reply.
timeout (v0.10.0): None/-1/any value <= 0 waits
indefinitely — the HITL case (ask an agent that suspends for approval;
the reply arrives hours/days later on resume). See AgentProcess.ask.
fail_if_suspended (v0.10.0, D2): raise AgentSuspendedError
immediately instead of waiting, if the target is suspended.
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 | |