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, 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
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | |
start()
async
¶
Start the runtime following the canonical initialization sequence.
Source code in civitas/runtime.py
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 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 | |
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)
async
¶
Spawn a dynamic agent via the named DynamicSupervisor.
Returns the agent name on success. Raises SpawnError on failure.
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)
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, 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
91 92 93 94 95 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 | |