209ba45477
Removes the deprecated `workflow_template` concept entirely across both backend API routers, internal logic handling within the `supervisory_node` and `consciousness_node`, and front-end components. Enables `consciousness_node` to work autonomously. Also refactors core package structure to enforce the "one python package, one Ray Actor" architectural rule. `GlobalWorkflowManager`, `WorkflowRunningEngine`, `PostgresDatabase`, and `WorkerCluster` have been moved to their own top-level decoupled package directories with properly exported `__init__.py` modules. Test suites have been relocated and import paths updated across the system. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: zhaoxi826 <198742034+zhaoxi826@users.noreply.github.com>
9 lines
277 B
Python
9 lines
277 B
Python
from sqlmodel import SQLModel, Field
|
|
|
|
|
|
class EventRecord(SQLModel, table=True):
|
|
trace_id: str = Field(
|
|
primary_key=True, description="The unique trace ID of the PretorEvent"
|
|
)
|
|
event_data_json: str = Field(description="The JSON serialized PretorEvent data")
|