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
19 lines
417 B
Python
19 lines
417 B
Python
# Generated by Django 5.2.1 on 2026-04-17 08:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pipeline', '0020_search_merged_volume_sort'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='pipelinejob',
|
|
name='strategy_config',
|
|
field=models.JSONField(blank=True, default=dict),
|
|
),
|
|
]
|