mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
74 lines
2.1 KiB
Python
74 lines
2.1 KiB
Python
# coding=utf-8
|
|
from drf_spectacular.types import OpenApiTypes
|
|
from drf_spectacular.utils import OpenApiParameter
|
|
|
|
from common.mixins.api_mixin import APIMixin
|
|
from knowledge.serializers.knowledge_workflow import KnowledgeWorkflowActionRequestSerializer
|
|
from knowledge.serializers.knowledge_workflow import KnowledgeWorkflowActionListQuerySerializer
|
|
|
|
|
|
class KnowledgeWorkflowApi(APIMixin):
|
|
pass
|
|
|
|
|
|
class KnowledgeWorkflowVersionApi(APIMixin):
|
|
pass
|
|
|
|
|
|
class KnowledgeWorkflowActionPageApi(APIMixin):
|
|
@staticmethod
|
|
def get_request():
|
|
return KnowledgeWorkflowActionListQuerySerializer
|
|
|
|
|
|
class KnowledgeWorkflowActionApi(APIMixin):
|
|
@staticmethod
|
|
def get_request():
|
|
return KnowledgeWorkflowActionRequestSerializer
|
|
|
|
@staticmethod
|
|
def get_parameters():
|
|
return [
|
|
OpenApiParameter(
|
|
name="workspace_id",
|
|
description="工作空间id",
|
|
type=OpenApiTypes.STR,
|
|
location='path',
|
|
required=True,
|
|
),
|
|
OpenApiParameter(
|
|
name="knowledge_id",
|
|
description="知识库id",
|
|
type=OpenApiTypes.STR,
|
|
location='path',
|
|
required=True,
|
|
)
|
|
]
|
|
|
|
class Operate(APIMixin):
|
|
@staticmethod
|
|
def get_parameters():
|
|
return [
|
|
OpenApiParameter(
|
|
name="workspace_id",
|
|
description="工作空间id",
|
|
type=OpenApiTypes.STR,
|
|
location='path',
|
|
required=True,
|
|
),
|
|
OpenApiParameter(
|
|
name="knowledge_id",
|
|
description="知识库id",
|
|
type=OpenApiTypes.STR,
|
|
location='path',
|
|
required=True,
|
|
),
|
|
OpenApiParameter(
|
|
name="knowledge_action_id",
|
|
description="知识库执行id",
|
|
type=OpenApiTypes.STR,
|
|
location='path',
|
|
required=True,
|
|
)
|
|
]
|