File size: 12,735 Bytes
3e93464 b47633b 3e93464 b47633b 3e93464 b47633b 3e93464 | 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 | from datetime import datetime
from typing import Any, Literal
from pydantic import BaseModel, ConfigDict, Field, field_validator
class Position(BaseModel):
x: float
y: float
class CredentialReference(BaseModel):
id: str | None = None
name: str
type: str
class WorkflowNodeData(BaseModel):
model_config = ConfigDict(extra="allow")
label: str = Field(min_length=1, max_length=128)
type: str = Field(min_length=1, max_length=256)
typeVersion: float = Field(default=1, ge=0)
category: Literal[
"trigger", "core", "ai", "database", "communication", "cloud", "developer"
]
subtitle: str | None = Field(default=None, max_length=256)
parameters: dict[str, Any] = Field(default_factory=dict)
credentials: dict[str, CredentialReference] | None = None
disabled: bool = False
issues: int = 0
class WorkflowNode(BaseModel):
id: str = Field(min_length=1, max_length=128)
type: str = "workflow"
position: Position
data: WorkflowNodeData
selected: bool | None = None
class WorkflowEdge(BaseModel):
id: str = Field(min_length=1, max_length=256)
source: str
target: str
type: str = "smoothstep"
animated: bool = False
sourceHandle: str | None = None
targetHandle: str | None = None
class WorkflowMeta(BaseModel):
model_config = ConfigDict(extra="allow")
description: str | None = None
generatedBy: str | None = None
version: int | None = None
tags: list[str] = Field(default_factory=list)
class WorkflowDocument(BaseModel):
id: str | None = None
name: str = Field(min_length=1, max_length=160)
active: bool = False
nodes: list[WorkflowNode] = Field(default_factory=list, max_length=1000)
edges: list[WorkflowEdge] = Field(default_factory=list, max_length=5000)
settings: dict[str, Any] = Field(default_factory=dict)
meta: WorkflowMeta = Field(default_factory=WorkflowMeta)
pinData: dict[str, Any] = Field(default_factory=dict)
@field_validator("nodes")
@classmethod
def unique_node_ids(cls, nodes: list[WorkflowNode]) -> list[WorkflowNode]:
ids = [node.id for node in nodes]
if len(ids) != len(set(ids)):
raise ValueError("Node IDs must be unique")
return nodes
@field_validator("edges")
@classmethod
def unique_edge_ids(cls, edges: list[WorkflowEdge]) -> list[WorkflowEdge]:
ids = [edge.id for edge in edges]
if len(ids) != len(set(ids)):
raise ValueError("Edge IDs must be unique")
return edges
class GenerateWorkflowRequest(BaseModel):
prompt: str = Field(min_length=10, max_length=20_000)
provider: Literal["openai", "gemini", "openrouter", "deterministic"] | None = None
model: str | None = Field(
default=None,
min_length=1,
max_length=200,
pattern=r"^[A-Za-z0-9][A-Za-z0-9._:/-]*$",
)
class GenerateWorkflowResponse(BaseModel):
workflow: WorkflowDocument
explanation: str
warnings: list[str] = Field(default_factory=list)
class WorkflowRequest(BaseModel):
workflow: WorkflowDocument
class ValidationIssue(BaseModel):
code: str
severity: Literal["error", "warning", "info"]
message: str
nodeId: str | None = None
suggestion: str | None = None
class ValidationResult(BaseModel):
valid: bool
score: int = Field(ge=0, le=100)
issues: list[ValidationIssue]
class OptimizationSuggestion(BaseModel):
title: str
description: str
impact: Literal["low", "medium", "high"]
nodeIds: list[str] = Field(default_factory=list)
class OptimizationResponse(BaseModel):
workflow: WorkflowDocument
suggestions: list[OptimizationSuggestion]
class ChatRequest(BaseModel):
message: str = Field(min_length=1, max_length=20_000)
workflow: WorkflowDocument
conversation_id: str | None = None
class ChatResponse(BaseModel):
message: str
workflow: WorkflowDocument | None = None
actions: list[str] = Field(default_factory=list)
class ExpressionRequest(BaseModel):
description: str = Field(min_length=2, max_length=4000)
context: dict[str, Any] = Field(default_factory=dict)
class ExpressionResponse(BaseModel):
expression: str
explanation: str
alternatives: list[str] = Field(default_factory=list)
class ImportRequest(BaseModel):
content: str = Field(min_length=2, max_length=5_000_000)
source: Literal["json", "clipboard", "url", "github"] = "json"
class ExportRequest(BaseModel):
workflow: WorkflowDocument
format: Literal["n8n", "internal"] = "n8n"
class SaveRequest(BaseModel):
workflow: WorkflowDocument
project_id: str | None = None
change_summary: str = Field(default="Manual save", max_length=500)
class SaveResponse(BaseModel):
id: str
version: int
saved_at: str
class SimulationRequest(BaseModel):
workflow: WorkflowDocument
input_data: dict[str, Any] = Field(default_factory=dict)
class NodeRunResult(BaseModel):
node_id: str
node_name: str
status: Literal["success", "skipped", "error"]
duration_ms: int = Field(ge=0)
input_data: dict[str, Any] = Field(default_factory=dict)
output_data: dict[str, Any] = Field(default_factory=dict)
error: str | None = None
class SimulationResponse(BaseModel):
status: Literal["success", "error"]
duration_ms: int = Field(ge=0)
trace: list[NodeRunResult]
output_data: dict[str, Any] = Field(default_factory=dict)
warnings: list[str] = Field(default_factory=list)
class TestAssertion(BaseModel):
path: str = Field(min_length=1, max_length=500)
operator: Literal["equals", "not_equals", "exists", "contains"] = "equals"
expected: Any = None
class WorkflowTestCase(BaseModel):
name: str = Field(min_length=1, max_length=160)
input_data: dict[str, Any] = Field(default_factory=dict)
assertions: list[TestAssertion] = Field(default_factory=list, max_length=100)
class TestWorkflowRequest(BaseModel):
workflow: WorkflowDocument
cases: list[WorkflowTestCase] = Field(min_length=1, max_length=100)
class TestCaseResult(BaseModel):
name: str
passed: bool
failures: list[str] = Field(default_factory=list)
duration_ms: int = Field(ge=0)
class TestWorkflowResponse(BaseModel):
passed: int
failed: int
results: list[TestCaseResult]
class CostEstimate(BaseModel):
executions_per_month: int
estimated_api_calls: int
estimated_ai_tokens: int
estimated_monthly_usd: float
assumptions: list[str]
rate_limit_warnings: list[str] = Field(default_factory=list)
class CostEstimateRequest(BaseModel):
workflow: WorkflowDocument
executions_per_month: int = Field(default=1000, ge=1, le=100_000_000)
class WorkflowDiffRequest(BaseModel):
before: WorkflowDocument
after: WorkflowDocument
class WorkflowDiff(BaseModel):
added_nodes: list[str] = Field(default_factory=list)
removed_nodes: list[str] = Field(default_factory=list)
modified_nodes: list[str] = Field(default_factory=list)
moved_nodes: list[str] = Field(default_factory=list)
added_edges: int = 0
removed_edges: int = 0
class ShareRequest(BaseModel):
workflow_id: str
permission: Literal["view", "copy"] = "view"
expires_in_days: int | None = Field(default=30, ge=1, le=365)
class ShareResponse(BaseModel):
id: str
url: str
permission: Literal["view", "copy"]
expires_at: datetime | None = None
class SharedWorkflowResponse(BaseModel):
workflow: WorkflowDocument
permission: Literal["view", "copy"]
expires_at: datetime | None = None
class VersionSummary(BaseModel):
id: str
version: int
change_summary: str | None = None
created_at: str
created_by: str
class RestoreVersionRequest(BaseModel):
version: int = Field(ge=1)
class CommentRequest(BaseModel):
workflow_id: str
body: str = Field(min_length=1, max_length=10_000)
node_id: str | None = Field(default=None, max_length=128)
class WorkflowComment(BaseModel):
id: str
workflow_id: str
user_id: str
node_id: str | None = None
body: str
resolved_at: str | None = None
created_at: str
class DeploymentRequest(BaseModel):
workflow: WorkflowDocument
activate: bool = False
class DeploymentResponse(BaseModel):
status: Literal["deployed", "preview"]
remote_workflow_id: str | None = None
message: str
class LineageField(BaseModel):
field: str
source_nodes: list[str] = Field(default_factory=list)
consumer_nodes: list[str] = Field(default_factory=list)
classification: Literal["public", "internal", "personal", "financial", "secret"]
class LineageResponse(BaseModel):
fields: list[LineageField]
node_dependencies: dict[str, list[str]]
sensitive_paths: list[str] = Field(default_factory=list)
class ContractRequest(BaseModel):
workflow: WorkflowDocument
sample_data: dict[str, Any] = Field(default_factory=dict)
expected_schema: dict[str, Literal["string", "number", "boolean", "object", "array", "null"]]
class ContractResponse(BaseModel):
valid: bool
inferred_schema: dict[str, str]
violations: list[str] = Field(default_factory=list)
class QualityResponse(BaseModel):
overall: int = Field(ge=0, le=100)
scores: dict[str, int]
findings: list[ValidationIssue]
class IntentDriftRequest(BaseModel):
workflow: WorkflowDocument
requirement: str = Field(min_length=10, max_length=20_000)
class IntentDriftResponse(BaseModel):
alignment_score: int = Field(ge=0, le=100)
covered_terms: list[str]
missing_terms: list[str]
class ReplayRequest(BaseModel):
workflow: WorkflowDocument
node_id: str = Field(min_length=1, max_length=128)
input_data: dict[str, Any] = Field(default_factory=dict)
class EnvironmentPromotionRequest(BaseModel):
workflow: WorkflowDocument
environment: Literal["development", "staging", "production"]
values: dict[str, str | int | float | bool] = Field(default_factory=dict)
class EnvironmentPromotionResponse(BaseModel):
workflow: WorkflowDocument
environment: str
replacements: int
unresolved: list[str] = Field(default_factory=list)
class ReleasePlanRequest(BaseModel):
workflow: WorkflowDocument
strategy: Literal["shadow", "canary", "synthetic"]
traffic_percentage: int = Field(default=10, ge=0, le=100)
success_threshold: float = Field(default=0.99, ge=0, le=1)
max_error_rate: float = Field(default=0.02, ge=0, le=1)
class ReleasePlanResponse(BaseModel):
strategy: str
status: Literal["draft", "blocked"]
requires_approval: bool = True
steps: list[str]
rollback_conditions: list[str]
warnings: list[str] = Field(default_factory=list)
class WorkflowPackageRequest(BaseModel):
workflow: WorkflowDocument
tests: list[WorkflowTestCase] = Field(default_factory=list)
contracts: dict[str, Any] = Field(default_factory=dict)
environments: dict[str, dict[str, Any]] = Field(default_factory=dict)
class WorkflowPackageResponse(BaseModel):
manifest: dict[str, Any]
workflow: WorkflowDocument
tests: list[WorkflowTestCase]
contracts: dict[str, Any]
environments: dict[str, dict[str, Any]]
class DocumentationResponse(BaseModel):
markdown: str
class RoiRequest(BaseModel):
workflow: WorkflowDocument
executions_per_month: int = Field(default=1000, ge=1, le=100_000_000)
minutes_saved_per_execution: float = Field(default=5, ge=0, le=100_000)
hourly_rate_usd: float = Field(default=30, ge=0, le=100_000)
sla_minutes: float = Field(default=60, gt=0, le=1_000_000)
class RoiResponse(BaseModel):
hours_saved: float
labor_value_usd: float
estimated_operating_cost_usd: float
net_value_usd: float
estimated_duration_ms: int
sla_headroom_percent: float
class WebhookInspectRequest(BaseModel):
payload: dict[str, Any]
redact: bool = True
class WebhookInspectResponse(BaseModel):
payload: dict[str, Any]
schema_map: dict[str, str]
redacted_fields: list[str]
class DependencyImpactRequest(BaseModel):
workflow: WorkflowDocument
dependency: str = Field(min_length=1, max_length=500)
class DependencyImpactResponse(BaseModel):
affected_nodes: list[str]
downstream_nodes: list[str]
severity: Literal["none", "low", "medium", "high"]
class SelfHealRequest(BaseModel):
workflow: WorkflowDocument
errors: list[str] = Field(default_factory=list, max_length=100)
class SelfHealResponse(BaseModel):
proposed_workflow: WorkflowDocument
changes: list[str]
quality_before: int
quality_after: int
requires_approval: bool = True
|