refactor: strengthen architecture CI gates and runtime contracts

This commit is contained in:
jxxghp
2026-08-25 17:02:29 +08:00
parent 605bf8174a
commit b914e8b6e4
123 changed files with 4240 additions and 1342 deletions
+2 -4
View File
@@ -1,11 +1,9 @@
from abc import ABC, abstractmethod
from typing import Any, ClassVar, Union
from app.chain import ChainBase
from app.application.configuration import get_configured_system_config
from app.schemas.workflow import ActionContext
from app.schemas.workflow import ActionParams
from app.schemas.workflow import ActionResult
from app.chain import ChainBase
from app.schemas.workflow import ActionContext, ActionParams, ActionResult
class ActionChain(ChainBase):