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, chunks, ontologies, and workflow status.
Attributes:
| Name | Type | Description |
|---|---|---|
input_text |
str
|
Input text to process. |
current_domain |
str
|
IRI used for forming document namespace. |
doc_hid |
str
|
An almost unique hash/id for the parent document. |
files |
dict[str, bytes]
|
Files to process. |
current_chunk |
Chunk
|
Current document chunk for processing (property, accessed via index). |
chunks |
list[Chunk]
|
List of chunks of the input text. |
chunks_processed |
list[Chunk]
|
List of processed chunks. |
current_ontology |
Ontology
|
Current ontology object. |
ontology_addendum |
Ontology
|
Additional ontology content. |
failure_stage |
FailureStage | None
|
Stage where failure occurred. |
failure_reason |
str | None
|
Reason for failure. |
success_score |
float
|
Score indicating success level. |
status |
Status
|
Current workflow status. |
node_visits |
defaultdict[WorkflowNode, int]
|
Number of visits per node. |
max_visits |
int
|
Maximum number of visits allowed per node. |
max_chunks |
int | None
|
Maximum number of chunks to process. |
Source code in ontocast/onto/state.py
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 445 446 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 | |
doc_iri
property
¶
Get the document IRI.
Returns:
| Name | Type | Description |
|---|---|---|
str |
The document IRI. |
doc_namespace
property
¶
Get the document namespace.
Returns:
| Name | Type | Description |
|---|---|---|
str |
The document namespace. |
ontology_id
property
¶
Get the document namespace.
Returns:
| Name | Type | Description |
|---|---|---|
str |
The document namespace. |
__init__(**kwargs)
¶
clear_failure()
¶
generate_ontology_updates_markdown()
¶
Generate a markdown string representing the chain of ontology updates.
Returns:
| Type | Description |
|---|---|
str
|
Markdown-formatted string showing all pending ontology updates. |
str
|
Returns empty string if no updates are pending. |
Source code in ontocast/onto/state.py
get_chunk_progress_info()
¶
Get current chunk number and total chunks.
Returns:
| Type | Description |
|---|---|
tuple[int, int]
|
tuple[int, int]: (current_chunk_number, total_chunks) |
Source code in ontocast/onto/state.py
get_chunk_progress_string()
¶
Get a formatted string showing chunk progress.
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Formatted string like "chunk 3/10" |
Source code in ontocast/onto/state.py
get_context_for_agent(agent_type)
¶
Get or create context for a specific agent.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_type
|
AgentType
|
Type of agent (renderer, critic, etc.). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
AgentContext |
AgentContext
|
The context for the agent. |
Source code in ontocast/onto/state.py
get_context_summary_for_agent(agent_type)
¶
Get a context summary for a specific agent.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_type
|
AgentType
|
Name of the agent requesting context summary. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A formatted context summary. |
Source code in ontocast/onto/state.py
get_node_status(node)
¶
Get the status of a workflow node, returning NOT_VISITED if not set.
model_post_init(__context)
¶
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
render_uptodate_facts()
¶
Create a copy of the current chunk's graph with all facts GraphUpdate objects applied.
This method: 1. Creates a copy of the current chunk's graph 2. Generates SPARQL queries from all facts GraphUpdate objects 3. Executes the queries on the copied graph 4. Returns the updated graph copy
Returns:
| Name | Type | Description |
|---|---|---|
RDFGraph |
RDFGraph
|
A copy of the current chunk's graph with all facts updates applied |
Source code in ontocast/onto/state.py
render_uptodate_ontology()
¶
Create a copy of the current ontology with all GraphUpdate objects applied.
This method: 1. Creates a copy of the current ontology 2. Generates SPARQL queries from all GraphUpdate objects 3. Executes the queries on the copied ontology graph 4. Checks if the updated graph exceeds max_triples limit 5. Sets the current hash as parent_hash in the updated ontology 6. Computes a new hash for the updated ontology 7. Syncs properties to ensure object fields are updated 8. Returns the updated ontology copy, or original if limit exceeded
Returns:
| Name | Type | Description |
|---|---|---|
Ontology |
Ontology
|
A copy of the current ontology with all updates applied and |
Ontology
|
a new hash generated, with the previous hash set as parent. |
|
Ontology
|
Returns original ontology if update would exceed max_triples limit. |
Source code in ontocast/onto/state.py
set_failure(stage, reason, success_score=0.0)
¶
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 |
success_score
|
float
|
The success score at failure (default: 0.0). |
0.0
|
Source code in ontocast/onto/state.py
set_node_status(node, status)
¶
set_text(text)
¶
Set the input text and generate document hash.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
The input text to set. |
required |
update_context_for_agent(agent_type, ontology_version=None, facts_version=None, ontology_operations=None, facts_operations=None, ontology_critique=None, facts_critique=None, metadata=None)
¶
Update context for a specific agent.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_type
|
AgentType
|
Name of the agent updating context. |
required |
ontology_version
|
Any | None
|
New ontology version if available. |
None
|
facts_version
|
Any | None
|
New facts version if available. |
None
|
ontology_operations
|
list[Any] | None
|
New ontology operations if available. |
None
|
facts_operations
|
list[Any] | None
|
New facts operations if available. |
None
|
ontology_critique
|
dict[str, Any] | None
|
New ontology critique if available. |
None
|
facts_critique
|
dict[str, Any] | None
|
New facts critique if available. |
None
|
metadata
|
dict[str, Any] | None
|
Additional metadata for the context. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
AgentContext |
AgentContext
|
The updated context. |
Source code in ontocast/onto/state.py
update_facts()
¶
Update the current chunk's graph with all facts GraphUpdate objects and clear the updates list.
This method: 1. Uses render_uptodate_facts() to get an updated copy 2. Replaces the current chunk's graph with the updated copy 3. Clears the facts_updates list
Source code in ontocast/onto/state.py
update_ontology()
¶
Update the current ontology with all GraphUpdate objects and clear the updates list.
This method: 1. Uses render_uptodate_ontology() to get an updated copy 2. Replaces the current ontology with the updated copy 3. Clears the ontology_updates list
Note: Version update is deferred to aggregate_serialize() to update only once at the end.
Source code in ontocast/onto/state.py
BudgetTracker
¶
Bases: BasePydanticModel
Lightweight tracker for LLM usage statistics and generated triples.
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)
¶
get_summary()
¶
Get a summary of LLM usage and generated triples.