mirror of
https://github.com/primedigitaltech/market-assistant.git
synced 2026-07-22 08:01:34 +08:00
新增 PipelineJob.strategy_config(默认 use_llm_default);GET /api/strategy-config-defaults/;PATCH 任务可保存策略偏好。策略生成页:本次仅规则稿复选框(默认关)、保存策略偏好、任务下拉去掉目录;第九章对齐仍由服务端默认处理。迁移 0021。 Made-with: Cursor
65 lines
1.6 KiB
Python
65 lines
1.6 KiB
Python
"""Pipeline HTTP API 视图(按领域拆分子模块,本包对外保持与原 ``views.py`` 一致的导出)。"""
|
|
from __future__ import annotations
|
|
|
|
from .dataset_views import (
|
|
JobDatasetCommentsView,
|
|
JobDatasetDetailView,
|
|
JobDatasetExportView,
|
|
JobDatasetMergedView,
|
|
JobDatasetSearchView,
|
|
JobDatasetSummaryView,
|
|
)
|
|
from .ingest_views import JobImportMergedView
|
|
from .job_report_views import (
|
|
JobCompetitorBriefPackView,
|
|
JobCompetitorBriefView,
|
|
JobExportDocumentView,
|
|
JobReportAssetView,
|
|
JobStrategyDraftView,
|
|
)
|
|
from .job_views import (
|
|
JobCancelView,
|
|
JobDetailView,
|
|
JobDownloadView,
|
|
JobListCreateView,
|
|
JobPreviewView,
|
|
JobRegenerateReportView,
|
|
JobResumeView,
|
|
ReportConfigDefaultsView,
|
|
StrategyConfigDefaultsView,
|
|
)
|
|
from .product_views import (
|
|
JdProductDetailView,
|
|
JdProductListView,
|
|
JdProductSnapshotDetailView,
|
|
JdProductSnapshotListView,
|
|
)
|
|
|
|
__all__ = [
|
|
"JobDatasetCommentsView",
|
|
"JobDatasetDetailView",
|
|
"JobDatasetExportView",
|
|
"JobDatasetMergedView",
|
|
"JobDatasetSearchView",
|
|
"JobDatasetSummaryView",
|
|
"JobImportMergedView",
|
|
"JobCompetitorBriefPackView",
|
|
"JobCompetitorBriefView",
|
|
"JobExportDocumentView",
|
|
"JobReportAssetView",
|
|
"JobStrategyDraftView",
|
|
"JobCancelView",
|
|
"JobDetailView",
|
|
"JobDownloadView",
|
|
"JobListCreateView",
|
|
"JobPreviewView",
|
|
"JobRegenerateReportView",
|
|
"JobResumeView",
|
|
"ReportConfigDefaultsView",
|
|
"StrategyConfigDefaultsView",
|
|
"JdProductDetailView",
|
|
"JdProductListView",
|
|
"JdProductSnapshotDetailView",
|
|
"JdProductSnapshotListView",
|
|
]
|