Spaces:
Running
Running
File size: 36,776 Bytes
3193174 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 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 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 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 | """
Extensible node and edge schemas for the graph.
Supports:
- Pydantic attribute validation
- Custom user-defined fields
- Schema versioning
- Migrations between versions
- Cost metrics (tokens, trust, latency)
"""
import builtins
from abc import ABC, abstractmethod
from collections import deque
from datetime import UTC, datetime
from enum import Enum
from typing import Any, ClassVar
import semver
import torch
from pydantic import BaseModel, ConfigDict, Field, ValidationError, field_validator, model_validator
__all__ = [
# Schema version
"SCHEMA_VERSION",
"AgentNodeSchema",
"BaseEdgeSchema",
"BaseNodeSchema",
"CostMetrics",
# Edge schemas
"EdgeType",
# Graph schema
"GraphSchema",
# LLM Configuration
"LLMConfig",
"MigrationRegistry",
# Node schemas
"NodeType",
# Migration
"SchemaMigration",
"SchemaValidationResult", # for input/output validation
"SchemaValidator",
"SchemaVersion",
"TaskNodeSchema",
# Validation
"ValidationResult",
"WorkflowEdgeSchema",
]
# Current schema version
SCHEMA_VERSION = "2.0.0"
class SchemaVersion(semver.Version):
"""
Schema version based on semver.
Delegates parsing, formatting, and all comparison operators
to ``semver.Version`` — no manual string parsing logic.
Example:
v = SchemaVersion.parse("2.1.0")
assert v >= SchemaVersion.parse("2.0.0")
assert v.is_schema_compatible(SchemaVersion.parse("2.3.0"))
current = SchemaVersion.current()
"""
def is_schema_compatible(self, other: "SchemaVersion") -> bool:
"""Compatibility by major version (semver major)."""
return self.major == other.major
@classmethod
def current(cls) -> "SchemaVersion":
"""Return the current framework schema version."""
return cls.parse(SCHEMA_VERSION)
class NodeType(str, Enum):
AGENT = "agent"
TASK = "task"
SUBGRAPH = "subgraph"
TOOL = "tool"
CUSTOM = "custom"
class LLMConfig(BaseModel):
"""
LLM configuration for an individual agent.
Allows each agent to use its own LLM with individual settings:
- Different providers (OpenAI, Anthropic, local models)
- Different models (gpt-4, claude-3, llama-3)
- Different generation parameters (temperature, max_tokens)
Example:
# OpenAI GPT-4
config1 = LLMConfig(
model_name="gpt-4",
base_url="https://api.openai.com/v1",
api_key="$OPENAI_API_KEY",
temperature=0.7,
max_tokens=2000
)
# Local Ollama model
config2 = LLMConfig(
model_name="llama3:70b",
base_url="http://localhost:11434/v1",
temperature=0.0
)
# Anthropic Claude
config3 = LLMConfig(
model_name="claude-3-opus-20240229",
base_url="https://api.anthropic.com",
api_key="$ANTHROPIC_API_KEY"
)
"""
model_config = ConfigDict(extra="allow")
# Model identification
model_name: str | None = None # e.g., "gpt-4", "claude-3-opus", "llama3:70b"
base_url: str | None = None # API endpoint URL
api_key: str | None = None # API key or env var reference (e.g., "$OPENAI_API_KEY")
# Generation parameters
max_tokens: int | None = None
temperature: float | None = None
timeout: float | None = None
top_p: float | None = None
stop_sequences: list[str] | None = None
# Additional provider-specific options
extra_params: dict[str, Any] = Field(default_factory=dict)
def resolve_api_key(self) -> str | None:
"""Resolve the API key from an environment variable if specified as $VAR."""
import os
if self.api_key and self.api_key.startswith("$"):
env_var = self.api_key[1:]
return os.environ.get(env_var)
return self.api_key
def merge_with(self, other: "LLMConfig | None") -> "LLMConfig":
"""Merge with another configuration (self takes priority)."""
if other is None:
return self
return LLMConfig(
model_name=self.model_name or other.model_name,
base_url=self.base_url or other.base_url,
api_key=self.api_key or other.api_key,
max_tokens=self.max_tokens if self.max_tokens is not None else other.max_tokens,
temperature=self.temperature if self.temperature is not None else other.temperature,
timeout=self.timeout if self.timeout is not None else other.timeout,
top_p=self.top_p if self.top_p is not None else other.top_p,
stop_sequences=self.stop_sequences or other.stop_sequences,
extra_params={**other.extra_params, **self.extra_params},
)
def to_generation_params(self) -> dict[str, Any]:
"""Collect generation parameters to pass to the LLM caller."""
params = {}
if self.max_tokens is not None:
params["max_tokens"] = self.max_tokens
if self.temperature is not None:
params["temperature"] = self.temperature
if self.top_p is not None:
params["top_p"] = self.top_p
if self.stop_sequences:
params["stop"] = self.stop_sequences
params.update(self.extra_params)
return params
def is_configured(self) -> bool:
"""Check whether the minimum configuration for the LLM is set."""
return bool(self.model_name or self.base_url)
class BaseNodeSchema(BaseModel):
"""Base node schema with embeddings and user-defined metadata."""
model_config = ConfigDict(extra="allow", arbitrary_types_allowed=True)
id: str
type: NodeType = NodeType.AGENT
@model_validator(mode="before")
@classmethod
def auto_migrate(cls, data: Any) -> Any:
"""Automatically apply migrations when deserialising outdated data."""
if isinstance(data, dict):
version = data.get("schema_version", "1.0.0")
if version != SCHEMA_VERSION:
data = migrate_schema(data)
return data
display_name: str | None = None
created_at: datetime = Field(default_factory=datetime.now)
updated_at: datetime = Field(default_factory=datetime.now)
embedding: list[float] | None = None
embedding_dim: int | None = None
metadata: dict[str, Any] = Field(default_factory=dict)
tags: set[str] = Field(default_factory=set)
schema_version: str = SCHEMA_VERSION
@field_validator("embedding", mode="before")
@classmethod
def convert_embedding(cls, v: Any) -> list[float] | None:
"""Convert embedding to a list of floats if it is set."""
if v is None:
return None
if isinstance(v, (list, tuple)):
return list(v)
if isinstance(v, torch.Tensor):
return v.cpu().tolist()
return v
@model_validator(mode="after")
def set_embedding_dim(self) -> "BaseNodeSchema":
"""Auto-fill embedding_dim from the length of embedding."""
if self.embedding is not None and self.embedding_dim is None:
object.__setattr__(self, "embedding_dim", len(self.embedding))
return self
def to_tensor_embedding(self) -> torch.Tensor | None:
"""Return embedding as a torch.Tensor or None."""
if self.embedding is None:
return None
return torch.tensor(self.embedding, dtype=torch.float32)
def get_feature_vector(self, feature_names: list[str] | None = None) -> torch.Tensor:
"""Collect the feature vector from embedding and selected metadata."""
features = []
if self.embedding:
features.extend(self.embedding)
if feature_names:
for name in feature_names:
value = self.metadata.get(name, 0.0)
if isinstance(value, (int, float)):
features.append(float(value))
return torch.tensor(features, dtype=torch.float32) if features else torch.zeros(0, dtype=torch.float32)
class SchemaValidationResult(BaseModel):
"""
Result of data validation against a schema.
Attributes:
valid: True if the data conforms to the schema.
schema_type: Schema type ('input' or 'output').
errors: List of validation errors.
warnings: List of warnings.
validated_data: Validated data (if successful).
message: Additional message.
"""
valid: bool = True
schema_type: str = ""
errors: list[str] = Field(default_factory=list)
warnings: list[str] = Field(default_factory=list)
validated_data: dict[str, Any] | None = None
message: str = ""
def raise_if_invalid(self) -> None:
"""Raise an exception if the data is invalid."""
if not self.valid:
msg = f"Schema validation failed ({self.schema_type}): {'; '.join(self.errors)}"
raise ValueError(msg)
class AgentNodeSchema(BaseNodeSchema):
"""
Agent node schema with LLM configuration and input/output validation.
Supports multi-model usage — each agent can use
its own LLM with individual settings (base_url, api_key, model_name, etc.).
Supports data validation via Pydantic schemas:
- input_schema: Pydantic model or JSON Schema for validating incoming data
- output_schema: Pydantic model or JSON Schema for validating agent responses
Example:
from pydantic import BaseModel
class SolverInput(BaseModel):
question: str
context: str | None = None
class SolverOutput(BaseModel):
answer: str
confidence: float
agent = AgentNodeSchema(
id="solver",
input_schema=SolverInput,
output_schema=SolverOutput,
)
# Validation
result = agent.validate_input({"question": "2+2=?"})
result = agent.validate_output('{"answer": "4", "confidence": 0.99}')
"""
type: NodeType = NodeType.AGENT
persona: str = ""
description: str = ""
# LLM Configuration - per-agent model settings
llm_backbone: str | None = None # model name (e.g., "gpt-4", "claude-3-opus")
base_url: str | None = None # API base URL (e.g., "https://api.openai.com/v1")
api_key: str | None = None # API key (or env var reference like "$OPENAI_API_KEY")
# LLM Generation parameters
max_tokens: int | None = None
temperature: float | None = None
timeout: float | None = None
top_p: float | None = None
stop_sequences: list[str] | None = None
tools: list[str] = Field(default_factory=list)
# Input/Output Schema for validation
# Can be: Type[BaseModel], JSON Schema dict, or None
input_schema: builtins.type[BaseModel] | dict[str, Any] | None = Field(default=None, exclude=True, repr=False)
output_schema: builtins.type[BaseModel] | dict[str, Any] | None = Field(default=None, exclude=True, repr=False)
# JSON Schema representations (for serialization)
input_schema_json: dict[str, Any] | None = Field(default=None, repr=False)
output_schema_json: dict[str, Any] | None = Field(default=None, repr=False)
trust_score: float = Field(default=1.0, ge=0.0, le=1.0)
quality_score: float = Field(default=1.0, ge=0.0, le=1.0)
success_rate: float = Field(default=1.0, ge=0.0, le=1.0)
total_calls: int = 0
total_tokens_used: int = 0
avg_latency_ms: float = 0.0
@model_validator(mode="after")
def extract_json_schemas(self) -> "AgentNodeSchema":
"""Automatically extract JSON Schema from Pydantic models."""
if self.input_schema is not None and self.input_schema_json is None:
if isinstance(self.input_schema, type) and issubclass(self.input_schema, BaseModel):
object.__setattr__(self, "input_schema_json", self.input_schema.model_json_schema())
elif isinstance(self.input_schema, dict):
object.__setattr__(self, "input_schema_json", self.input_schema)
if self.output_schema is not None and self.output_schema_json is None:
if isinstance(self.output_schema, type) and issubclass(self.output_schema, BaseModel):
object.__setattr__(self, "output_schema_json", self.output_schema.model_json_schema())
elif isinstance(self.output_schema, dict):
object.__setattr__(self, "output_schema_json", self.output_schema)
return self
def validate_input(self, data: dict[str, Any] | str) -> "SchemaValidationResult":
"""
Validate incoming data against input_schema.
Args:
data: Data to validate (dict or JSON string).
Returns:
SchemaValidationResult with the validation result.
"""
# Priority: Pydantic model > JSON Schema
schema = self.input_schema or self.input_schema_json
return self._validate_data(data, schema, "input")
def validate_output(self, data: dict[str, Any] | str) -> "SchemaValidationResult":
"""
Validate the agent response against output_schema.
Args:
data: Data to validate (dict or JSON string).
Returns:
SchemaValidationResult with the validation result.
"""
# Priority: Pydantic model > JSON Schema
schema = self.output_schema or self.output_schema_json
return self._validate_data(data, schema, "output")
def _validate_data(
self,
data: dict[str, Any] | str,
schema: builtins.type[BaseModel] | dict[str, Any] | None,
schema_type: str,
) -> "SchemaValidationResult":
"""Internal data validation method."""
import json
if schema is None:
return SchemaValidationResult(
valid=True,
schema_type=schema_type,
message="No schema defined, validation skipped",
)
# Parse JSON string if needed
if isinstance(data, str):
try:
data = json.loads(data)
except json.JSONDecodeError as e:
return SchemaValidationResult(
valid=False,
schema_type=schema_type,
errors=[f"Invalid JSON: {e}"],
)
# Validation via Pydantic model
if isinstance(schema, type) and issubclass(schema, BaseModel):
try:
validated = schema.model_validate(data)
return SchemaValidationResult(
valid=True,
schema_type=schema_type,
validated_data=validated.model_dump(),
)
except ValidationError as e:
from config.logging import logger
logger.warning("Schema validation failed ({} error(s)): {}", e.error_count(), e)
errors = [
"{}: {}".format(
" -> ".join(str(p) for p in err["loc"]) if err["loc"] else "(root)",
err["msg"],
)
for err in e.errors()
]
return SchemaValidationResult(
valid=False,
schema_type=schema_type,
errors=errors,
)
# Validation via JSON Schema (without jsonschema library — basic check)
if isinstance(schema, dict):
return self._validate_json_schema(data, schema, schema_type)
return SchemaValidationResult(
valid=False,
schema_type=schema_type,
errors=["Unknown schema type"],
)
def _validate_json_schema(
self,
data: dict[str, Any],
schema: dict[str, Any],
schema_type: str,
) -> "SchemaValidationResult":
"""Basic JSON Schema validation (without external dependencies)."""
errors = []
# Check required fields
required = schema.get("required", [])
errors.extend(f"Missing required field: {field}" for field in required if field not in data)
# Type checking (basic)
properties = schema.get("properties", {})
for field, value in data.items():
if field in properties:
prop_schema = properties[field]
expected_type = prop_schema.get("type")
if expected_type and not self._check_type(value, expected_type):
errors.append(f"Field '{field}': expected {expected_type}, got {type(value).__name__}")
if errors:
return SchemaValidationResult(valid=False, schema_type=schema_type, errors=errors)
return SchemaValidationResult(valid=True, schema_type=schema_type, validated_data=data)
def _check_type(self, value: Any, expected: str) -> bool:
"""Check type conformance against JSON Schema."""
type_map = {
"string": str,
"integer": int,
"number": (int, float),
"boolean": bool,
"array": list,
"object": dict,
"null": type(None),
}
expected_types = type_map.get(expected)
if expected_types is None:
return True # Unknown type — skip
return isinstance(value, expected_types)
def has_input_schema(self) -> bool:
"""Check whether the input schema is set."""
return self.input_schema is not None or self.input_schema_json is not None
def has_output_schema(self) -> bool:
"""Check whether the output schema is set."""
return self.output_schema is not None or self.output_schema_json is not None
def get_llm_config(self) -> "LLMConfig":
"""Extract the LLM configuration from the agent schema."""
return LLMConfig(
model_name=self.llm_backbone,
base_url=self.base_url,
api_key=self.api_key,
max_tokens=self.max_tokens,
temperature=self.temperature,
timeout=self.timeout,
top_p=self.top_p,
stop_sequences=self.stop_sequences,
)
def has_llm_config(self) -> bool:
"""Check whether the LLM configuration is set for the agent."""
return any(
[
self.llm_backbone,
self.base_url,
self.api_key,
self.max_tokens is not None,
self.temperature is not None,
]
)
class TaskNodeSchema(BaseNodeSchema):
type: NodeType = NodeType.TASK
query: str = ""
description: str = ""
expected_output: str | None = None
max_iterations: int | None = None
deadline: datetime | None = None
answer: str | None = None
status: str = "pending" # pending, running, completed, failed
class EdgeType(str, Enum):
WORKFLOW = "workflow"
TASK_CONTEXT = "task_context"
TASK_UPDATE = "task_update"
DEPENDENCY = "dependency"
FEEDBACK = "feedback"
FALLBACK = "fallback"
CUSTOM = "custom"
class CostMetrics(BaseModel):
model_config = ConfigDict(extra="allow")
estimated_tokens: int | None = None
actual_tokens: int | None = None
latency_ms: float | None = None
timeout_ms: float | None = None
trust: float = Field(default=1.0, ge=0.0, le=1.0)
reliability: float = Field(default=1.0, ge=0.0, le=1.0)
cost_usd: float | None = None
custom: dict[str, float] = Field(default_factory=dict)
class BaseEdgeSchema(BaseModel):
"""Base edge schema with weights, probabilities, and custom features."""
model_config = ConfigDict(extra="allow", arbitrary_types_allowed=True)
source: str
target: str
@model_validator(mode="before")
@classmethod
def auto_migrate(cls, data: Any) -> Any:
"""Automatically apply migrations when deserialising outdated data."""
if isinstance(data, dict):
version = data.get("schema_version", "1.0.0")
if version != SCHEMA_VERSION:
data = migrate_schema(data)
return data
type: EdgeType = EdgeType.WORKFLOW
weight: float = Field(default=1.0, ge=0.0)
probability: float = Field(default=1.0, ge=0.0, le=1.0)
bidirectional: bool = False
cost: CostMetrics = Field(default_factory=CostMetrics)
embedding: list[float] | None = None
attr: list[float] | None = None
attr_dim: int | None = None
created_at: datetime = Field(default_factory=datetime.now)
metadata: dict[str, Any] = Field(default_factory=dict)
schema_version: str = SCHEMA_VERSION
@field_validator("embedding", "attr", mode="before")
@classmethod
def convert_array(cls, v: Any) -> list[float] | None:
"""Convert array fields to a list of floats if they are set."""
if v is None:
return None
if isinstance(v, (list, tuple)):
return list(v)
if isinstance(v, torch.Tensor):
return v.cpu().tolist()
return v
@model_validator(mode="after")
def set_attr_dim(self) -> "BaseEdgeSchema":
"""Auto-fill attr_dim if attr is set."""
if self.attr is not None and self.attr_dim is None:
object.__setattr__(self, "attr_dim", len(self.attr))
return self
def to_attr_tensor(self) -> torch.Tensor:
"""Return edge features as a torch.Tensor."""
if self.attr is not None:
return torch.tensor(self.attr, dtype=torch.float32)
return self._build_default_attr()
def _build_default_attr(self) -> torch.Tensor:
"""Build default attributes (weight, probability, trust, types)."""
attr = [
self.weight,
self.probability,
self.cost.trust,
1.0 if self.type == EdgeType.WORKFLOW else 0.0,
1.0 if self.type == EdgeType.TASK_CONTEXT else 0.0,
1.0 if self.type == EdgeType.TASK_UPDATE else 0.0,
1.0 if self.type == EdgeType.FEEDBACK else 0.0,
1.0 if self.type == EdgeType.FALLBACK else 0.0,
]
return torch.tensor(attr, dtype=torch.float32)
def get_feature_vector(self, feature_names: list[str] | None = None) -> torch.Tensor:
"""Collect the feature vector from base fields, embedding, and selected names."""
features = [self.weight, self.probability, self.cost.trust, self.cost.reliability]
if self.embedding:
features.extend(self.embedding)
if feature_names:
for name in feature_names:
if hasattr(self.cost, name):
value = getattr(self.cost, name)
elif name in self.metadata:
value = self.metadata[name]
elif name in self.cost.custom:
value = self.cost.custom[name]
else:
value = 0.0
if isinstance(value, (int, float)):
features.append(float(value))
return torch.tensor(features, dtype=torch.float32)
class WorkflowEdgeSchema(BaseEdgeSchema):
"""
Workflow edge schema with routing conditions.
Attributes:
condition: String condition or name of a registered condition.
Used by ConditionEvaluator for evaluation.
priority: Edge priority (higher = earlier).
transform: Optional data transform applied on transition.
is_conditional: True if the edge is conditional (for fast lookup).
Example:
edge = WorkflowEdgeSchema(
source="solver",
target="reviewer",
condition="source_success", # built-in condition
priority=1,
)
"""
type: EdgeType = EdgeType.WORKFLOW
condition: str | None = None
priority: int = 0
transform: str | None = None
is_conditional: bool = False
@model_validator(mode="after")
def set_is_conditional(self) -> "WorkflowEdgeSchema":
"""Automatically set is_conditional if condition is provided."""
if self.condition is not None:
object.__setattr__(self, "is_conditional", True)
return self
class GraphSchema(BaseModel):
"""Schema of the entire graph: nodes, edges, feature names, and metadata."""
model_config = ConfigDict(extra="allow", arbitrary_types_allowed=True)
schema_version: str = SCHEMA_VERSION
@model_validator(mode="before")
@classmethod
def auto_migrate(cls, data: Any) -> Any:
"""Automatically apply migrations when deserialising outdated data."""
if isinstance(data, dict):
version = data.get("schema_version", "1.0.0")
if version != SCHEMA_VERSION:
data = migrate_schema(data)
return data
name: str | None = None
description: str | None = None
created_at: datetime = Field(default_factory=datetime.now)
updated_at: datetime = Field(default_factory=datetime.now)
nodes: dict[str, BaseNodeSchema] = Field(default_factory=dict)
edges: list[BaseEdgeSchema] = Field(default_factory=list)
node_feature_names: list[str] = Field(default_factory=list)
edge_feature_names: list[str] = Field(default_factory=list)
node_feature_dim: int | None = None
edge_feature_dim: int | None = None
metadata: dict[str, Any] = Field(default_factory=dict)
def add_node(self, node: BaseNodeSchema) -> None:
"""Add a node to the schema and update the timestamp."""
self.nodes[node.id] = node
self.updated_at = datetime.now(UTC)
def add_edge(self, edge: BaseEdgeSchema) -> None:
"""Add an edge to the schema and update the timestamp."""
self.edges.append(edge)
self.updated_at = datetime.now(UTC)
def get_node(self, node_id: str) -> BaseNodeSchema | None:
"""Return a node by ID or None."""
return self.nodes.get(node_id)
def get_edges(self, source: str | None = None, target: str | None = None) -> list[BaseEdgeSchema]:
"""Filter edges by source/target."""
result = self.edges
if source is not None:
result = [e for e in result if e.source == source]
if target is not None:
result = [e for e in result if e.target == target]
return result
def compute_feature_dims(self) -> None:
"""Determine node and edge feature dimensions from current data."""
if self.nodes:
sample_node = next(iter(self.nodes.values()))
features = sample_node.get_feature_vector(self.node_feature_names)
self.node_feature_dim = len(features) if features.numel() > 0 else 0
if self.edges:
features = self.edges[0].get_feature_vector(self.edge_feature_names)
self.edge_feature_dim = len(features) if features.numel() > 0 else 0
def to_dict(self) -> dict[str, Any]:
"""Serialize the schema to a dict."""
return {
"schema_version": self.schema_version,
"name": self.name,
"description": self.description,
"created_at": self.created_at.isoformat(),
"updated_at": self.updated_at.isoformat(),
"nodes": {k: v.model_dump() for k, v in self.nodes.items()},
"edges": [e.model_dump() for e in self.edges],
"node_feature_names": self.node_feature_names,
"edge_feature_names": self.edge_feature_names,
"metadata": self.metadata,
}
class SchemaMigration[T: BaseModel](ABC):
from_version: ClassVar[str]
to_version: ClassVar[str]
@abstractmethod
def migrate(self, data: dict[str, Any]) -> dict[str, Any]: ...
def can_migrate(self, version: str) -> bool:
"""Check whether the migration is applicable to the given version."""
return version == self.from_version
class MigrationRegistry:
def __init__(self) -> None:
self._migrations: dict[str, list[SchemaMigration]] = {}
def register(self, migration: SchemaMigration) -> None:
"""Register a migration for its source version."""
key = migration.from_version
if key not in self._migrations:
self._migrations[key] = []
self._migrations[key].append(migration)
def migrate_to_latest(self, data: dict[str, Any], current_version: str) -> dict[str, Any]:
"""Apply a chain of migrations up to the current schema version."""
version = current_version
while version != SCHEMA_VERSION:
if version not in self._migrations:
break
for migration in self._migrations[version]:
data = migration.migrate(data)
version = migration.to_version
break
data["schema_version"] = SCHEMA_VERSION
return data
def get_migration_path(self, from_version: str, to_version: str) -> list[SchemaMigration]:
"""Return the sequence of migrations from version A to B, if known."""
path = []
version = from_version
while version != to_version:
if version not in self._migrations:
break
migration = self._migrations[version][0]
path.append(migration)
version = migration.to_version
return path
_migration_registry = MigrationRegistry()
def register_migration(migration: SchemaMigration) -> None:
"""Register a migration in the global registry."""
_migration_registry.register(migration)
def migrate_schema(data: dict[str, Any]) -> dict[str, Any]:
"""Apply migrations to schema data up to the current version."""
version = data.get("schema_version", "1.0.0")
if version == SCHEMA_VERSION:
return data
return _migration_registry.migrate_to_latest(data, version)
class MigrationV1ToV2(SchemaMigration):
from_version = "1.0.0"
to_version = "2.0.0"
def migrate(self, data: dict[str, Any]) -> dict[str, Any]:
"""Migration from schema v1: moving agents -> nodes and normalising edges."""
if "agents" in data and "nodes" not in data:
nodes = {}
for agent_data in data.get("agents", []):
node_id = agent_data.get("agent_id") or agent_data.get("identifier") or agent_data.get("id")
nodes[node_id] = {
"id": node_id,
"type": "agent",
"display_name": agent_data.get("display_name"),
"persona": agent_data.get("persona", ""),
"description": agent_data.get("description", ""),
"embedding": agent_data.get("embedding"),
"metadata": {},
"schema_version": self.to_version,
}
data["nodes"] = nodes
if "edges" in data:
new_edges = []
for edge in data["edges"]:
new_edge = {
"source": edge.get("source"),
"target": edge.get("target"),
"type": edge.get("type", "workflow"),
"weight": edge.get("weight", 1.0),
"probability": 1.0,
"cost": {"trust": 1.0, "reliability": 1.0},
"schema_version": self.to_version,
}
new_edges.append(new_edge)
data["edges"] = new_edges
return data
register_migration(MigrationV1ToV2())
class ValidationResult(BaseModel):
valid: bool = True
errors: list[str] = Field(default_factory=list)
warnings: list[str] = Field(default_factory=list)
def add_error(self, message: str) -> None:
"""Add an error and mark the result as invalid."""
self.errors.append(message)
self.valid = False
def add_warning(self, message: str) -> None:
"""Add a warning without changing validity."""
self.warnings.append(message)
class SchemaValidator:
def __init__(
self,
check_cycles: bool = True,
check_duplicates: bool = True,
check_orphans: bool = True,
check_connectivity: bool = False,
):
"""Schema validation settings (cycles, duplicates, isolated nodes)."""
self.check_cycles = check_cycles
self.check_duplicates = check_duplicates
self.check_orphans = check_orphans
self.check_connectivity = check_connectivity
def validate(self, schema: GraphSchema) -> ValidationResult:
"""Validate the schema and return a result with errors/warnings."""
result = ValidationResult()
self._validate_nodes(schema, result)
self._validate_edges(schema, result)
if self.check_cycles:
self._check_cycles(schema, result)
if self.check_connectivity:
self._check_connectivity(schema, result)
return result
def _validate_nodes(self, schema: GraphSchema, result: ValidationResult) -> None:
"""Check node uniqueness and correctness."""
seen_ids = set()
for node_id, node in schema.nodes.items():
if self.check_duplicates and node_id in seen_ids:
result.add_error(f"Duplicate node ID: {node_id}")
seen_ids.add(node_id)
if node.id != node_id:
result.add_error(f"Node ID mismatch: key={node_id}, node.id={node.id}")
if node.embedding and node.embedding_dim and len(node.embedding) != node.embedding_dim:
result.add_warning(
f"Node {node_id}: embedding length {len(node.embedding)} != embedding_dim {node.embedding_dim}"
)
def _validate_edges(self, schema: GraphSchema, result: ValidationResult) -> None:
"""Check edge correctness and basic constraints."""
seen_edges = set()
node_ids = set(schema.nodes.keys())
for i, edge in enumerate(schema.edges):
if edge.source not in node_ids:
result.add_error(f"Edge {i}: source '{edge.source}' not found")
if edge.target not in node_ids:
result.add_error(f"Edge {i}: target '{edge.target}' not found")
if edge.source == edge.target:
result.add_warning(f"Edge {i}: self-loop on '{edge.source}'")
if self.check_duplicates:
edge_key = (edge.source, edge.target, edge.type)
if edge_key in seen_edges:
result.add_warning(f"Edge {i}: duplicate edge {edge_key}")
seen_edges.add(edge_key)
if edge.weight < 0:
result.add_error(f"Edge {i}: negative weight {edge.weight}")
if edge.probability < 0 or edge.probability > 1:
result.add_error(f"Edge {i}: invalid probability {edge.probability}")
def _check_cycles(self, schema: GraphSchema, result: ValidationResult) -> None:
"""Check for cycles via topological sort."""
import rustworkx as rx
graph = rx.PyDiGraph()
node_indices = {}
for node_id in schema.nodes:
node_indices[node_id] = graph.add_node(node_id)
for edge in schema.edges:
if edge.source in node_indices and edge.target in node_indices:
graph.add_edge(node_indices[edge.source], node_indices[edge.target], None)
try:
rx.topological_sort(graph)
except rx.DAGHasCycle:
sccs = list(rx.strongly_connected_components(graph))
cycles = [scc for scc in sccs if len(scc) > 1]
if cycles:
cycle_nodes = [[schema.nodes[list(schema.nodes.keys())[idx]].id for idx in scc] for scc in cycles]
result.add_warning(f"Graph contains cycles: {cycle_nodes}")
def _check_connectivity(self, schema: GraphSchema, result: ValidationResult) -> None:
"""Check connectivity and identify isolated nodes."""
if len(schema.nodes) <= 1:
return
reachable = set()
edge_map = {}
for edge in schema.edges:
if edge.source not in edge_map:
edge_map[edge.source] = []
edge_map[edge.source].append(edge.target)
start = next(iter(schema.nodes.keys()))
queue = deque([start])
reachable.add(start)
while queue:
node = queue.popleft()
for neighbor in edge_map.get(node, []):
if neighbor not in reachable:
reachable.add(neighbor)
queue.append(neighbor)
if self.check_orphans:
orphans = set(schema.nodes.keys()) - reachable
if orphans:
result.add_warning(f"Orphan nodes (not reachable): {orphans}")
|