Python: Reorganize workflows modules (#1282)

* Reorganize modules

* Fix unit tests

* Remove submodules
This commit is contained in:
Tao Chen
2025-10-08 10:04:06 -07:00
committed by GitHub
Unverified
parent 1c5e607a1f
commit c2c8ec3d4e
12 changed files with 873 additions and 854 deletions
@@ -3,7 +3,7 @@
from dataclasses import dataclass # noqa: I001
from typing import Any, cast
from agent_framework._workflows._executor import RequestInfoMessage, RequestResponse
from agent_framework._workflows._request_info_executor import RequestInfoMessage, RequestResponse
from agent_framework._workflows._runner_context import ( # type: ignore
_decode_checkpoint_value, # type: ignore
_encode_checkpoint_value, # type: ignore
@@ -7,7 +7,7 @@ from typing import Any
from agent_framework._workflows._checkpoint import CheckpointStorage, WorkflowCheckpoint
from agent_framework._workflows._events import RequestInfoEvent, WorkflowEvent
from agent_framework._workflows._executor import (
from agent_framework._workflows._request_info_executor import (
PendingRequestDetails,
RequestInfoExecutor,
RequestInfoMessage,