ontocast.onto.state¶
AgentState
¶
Bases: BasePydanticModel
State for the ontology-based knowledge graph agent.
This class maintains the state of the agent during document processing, including input text, content units, ontologies, and workflow status.
Attributes:
| Name | Type | Description |
|---|---|---|
docling_doc |
Any
|
Parsed document in native Docling format. |
current_domain |
str
|
IRI used for forming document namespace. |
doc_hid |
str
|
An almost unique hash/id for the parent document. |
raw_input |
dict[str, bytes]
|
Single raw input payload as {filename: bytes}. |
failure_stage |
FailureStage | None
|
Stage where failure occurred. |
failure_reason |
str | None
|
Reason for failure. |
status |
Status
|
Current workflow status. |
max_visits |
int
|
Maximum render attempts per unit loop. |
max_chunks |
int | None
|
Maximum number of source content units to split and process. |
Source code in ontocast/onto/state.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 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 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 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 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | |
doc_iri
property
¶
Get the document IRI.
Returns:
| Name | Type | Description |
|---|---|---|
str |
URIRef
|
The document IRI. |
doc_namespace
property
¶
Get the document namespace.
Returns:
| Name | Type | Description |
|---|---|---|
str |
The document namespace. |
needs_section_prepare
property
¶
Whether the request carries explicit section-dependent options.
Section tagging itself is default-on in chunk prepare (driven by
CHUNK_SECTION_CLASSIFIER); schema-default exclusions apply even
when this is False.
ontology_ids
property
¶
Ontology ids for all current ontology artifacts.
render_facts
property
¶
Whether facts rendering should run.
render_ontology
property
¶
Whether ontology rendering should run.
use_summarization
property
¶
Whether per-unit summaries should be produced in the fan-out.
clear_failure()
¶
get_content_unit_progress_info()
¶
Get current content unit number and total content units.
Source code in ontocast/onto/state.py
get_content_unit_progress_string()
¶
Get a formatted string showing content unit progress.
Source code in ontocast/onto/state.py
render_updated_graph(graph, updates, max_triples=None)
classmethod
¶
Create a copy of the given graph with all GraphUpdate objects applied.
This method: 1. Creates a copy of the input graph 2. Generates SPARQL queries from all GraphUpdate objects 3. Executes the queries on the copied graph 4. Checks if the updated graph exceeds max_triples limit 5. Returns the updated graph copy, or original if limit exceeded
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
graph
|
RDFGraph
|
The RDFGraph to update |
required |
updates
|
list[GraphUpdate]
|
List of GraphUpdate objects to apply |
required |
max_triples
|
int | None
|
Maximum number of triples allowed. If None, no limit enforced. |
None
|
Returns:
| Type | Description |
|---|---|
RDFGraph
|
Tuple of (RDFGraph, bool): The updated graph (or original if limit exceeded), |
bool
|
and a boolean indicating if the update was applied (True) or skipped (False) |
Source code in ontocast/onto/state.py
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 | |
set_docling_doc(doc)
¶
Set the parsed document and generate document hash.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
'DoclingDocument'
|
The DoclingDocument to set. |
required |
Source code in ontocast/onto/state.py
set_failure(stage, reason)
¶
Set failure state with stage and reason.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stage
|
FailureStage
|
The stage where the failure occurred. |
required |
reason
|
str
|
The reason for the failure. |
required |
Source code in ontocast/onto/state.py
BudgetTracker
¶
Bases: BasePydanticModel
Lightweight tracker for LLM usage statistics and generated triples.
node_durations follows a key convention that distinguishes wall clock
from time summed across concurrent workers -- without it, a fan-out node's
entry is ambiguous and the two are silently added together:
"<node>"
True wall clock for a pipeline node. Written only by the _timed
wrapper in :mod:ontocast.stategraph.create.
"<node>/unit_sum"
Per-unit loop time summed over every parallel worker. Divided by the
wall-clock entry this yields effective workers -- see
:meth:parallel_efficiency.
"<node>/<stage>"
Any other sub-stage measurement (worker_wait, loop_lag_total,
llm/provider, ...).
Source code in ontocast/onto/state.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 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 | |
prefix_cache_hit_rate
property
¶
Share of input tokens served from the provider's prompt cache.
This is the provider-side prefix cache, not the OntoCast disk cache -- the two are independent, and a deployment whose disk cache is cold (a fresh container, say) can still hit this one on every unit after the first, because the fan-out sends the same document-invariant prefix N times.
Near 0.0 with a fan-out wider than one unit means the workers all
issued before any prefix had been cached: a cache entry only becomes
readable once the first response has begun. Compare a long, more
sequential run against a wide one to see the difference.
Returns:
| Type | Description |
|---|---|
float | None
|
float | None: Ratio in |
float | None
|
tokens were reported at all. |
reasoning_share_of_output
property
¶
Share of output tokens the model spent on thinking.
reasoning_tokens are counted inside the output totals, so this is
a decomposition of what was already paid for, never an addition to it.
A high share says the cost lever is the model's reasoning budget rather
than anything about the prompt; a share of 0.0 says the model is
not a reasoning model, and no reasoning-effort setting will change its
bill.
Returns:
| Type | Description |
|---|---|
float | None
|
float | None: Ratio in |
float | None
|
tokens were reported at all. |
add_cache_hit(chars_sent, chars_received, *, usage=None)
¶
Record a disk-cache hit (does not increment calls_count).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
chars_sent
|
int
|
Prompt length in characters. |
required |
chars_received
|
int
|
Cached response length in characters. |
required |
usage
|
TokenUsage | None
|
Token counts stored with the cache entry. |
None
|
Source code in ontocast/onto/state.py
add_duration(name, seconds)
¶
Accumulate seconds for a named node or stage.
Keys ending in :data:PEAK_SUFFIX take the maximum instead, since
adding two peaks would report a stall that never happened.
Source code in ontocast/onto/state.py
add_facts_update(num_operations, num_triples)
¶
Add facts update statistics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_operations
|
int
|
Number of update operations generated |
required |
num_triples
|
int
|
Number of triples in these operations |
required |
Source code in ontocast/onto/state.py
add_ontology_update(num_operations, num_triples)
¶
Add ontology update statistics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_operations
|
int
|
Number of update operations generated |
required |
num_triples
|
int
|
Number of triples in these operations |
required |
Source code in ontocast/onto/state.py
add_usage(chars_sent, chars_received, *, usage=None)
¶
Record a billed provider call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
chars_sent
|
int
|
Prompt length in characters. |
required |
chars_received
|
int
|
Response length in characters. |
required |
usage
|
TokenUsage | None
|
Token counts, when the provider reported any. |
None
|
Source code in ontocast/onto/state.py
get_duration_summary()
¶
Get per-node wall-clock durations, slowest first.
Source code in ontocast/onto/state.py
get_parallelism_summary()
¶
Effective worker count and event-loop stall per fan-out node.
Reports only nodes that recorded a /unit_sum entry, so it is empty
for pipelines without a fan-out. lag is the time the event loop was
blocked by synchronous work while units were meant to be running
concurrently -- it is the difference between the width configured and
the width achieved.
Source code in ontocast/onto/state.py
get_summary()
¶
Get a summary of LLM usage and generated triples.
Source code in ontocast/onto/state.py
incr(name, n=1)
¶
Increment a named counter.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Counter key, e.g. |
required |
n
|
int
|
Amount to add. |
1
|
merge_from(other)
¶
Accumulate counters from another tracker (e.g. parallel unit workers).
Source code in ontocast/onto/state.py
parallel_efficiency(node)
¶
Effective worker count for a fan-out node, or None if unmeasured.
The ratio of time summed across unit workers to the node's wall clock.
A value near parallel_workers means the fan-out is running at full
width; a value near 1.0 means the units are effectively serialised
-- typically by synchronous CPU work blocking the event loop, which
"<node>/loop_lag_total" quantifies.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
node
|
str
|
The node key, e.g. |
required |
Returns:
| Type | Description |
|---|---|
float | None
|
float | None: Effective workers, or |
float | None
|
clock or the |