2026-06-29 00:10:10 +02:00
|
|
|
"""Pydantic schemas package."""
|
2026-06-29 01:18:46 +02:00
|
|
|
|
|
|
|
|
from app.schemas.plugin import PluginInfo, PluginListResponse, PluginActionResponse, PluginUninstallResponse
|
2026-06-29 02:44:13 +02:00
|
|
|
from app.schemas.ai_copilot import (
|
|
|
|
|
CopilotQueryRequest, CopilotAction, CopilotQueryResponse,
|
|
|
|
|
CopilotExecuteRequest, CopilotExecuteResponse,
|
|
|
|
|
CopilotHistoryResponse, CopilotMessageResponse,
|
|
|
|
|
)
|
|
|
|
|
from app.schemas.workflow import (
|
|
|
|
|
WorkflowCreate, WorkflowUpdate, WorkflowResponse, WorkflowListResponse,
|
|
|
|
|
InstanceCreate, InstanceResponse, InstanceDetailResponse, InstanceListResponse,
|
|
|
|
|
AdvanceRequest, StepHistoryResponse, WorkflowStep,
|
|
|
|
|
)
|