pipeline_core/README.md

33 lines
765 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# pipeline_core
产线核心模块 —— 管理产线定义、步骤编排、版本控制、发布流程。
## 功能
- **产线管理**:产线 CRUD定义产线名称与描述
- **步骤编排**产线步骤的增删改查支持依赖关系DAG
- **版本控制**:产线版本发布与回滚
- **编辑器**:可视化产线步骤编排界面
## 数据表
| 表 | 说明 |
|---|------|
| pipelines | 产线定义 |
| pipeline_steps | 产线步骤(含 deps 依赖) |
| pipeline_versions | 产线版本快照 |
| llm | 大模型配置 |
## 安装
```bash
cd pkgs/pipeline_core && pip install .
```
## 集成
伞仓 (pipeline-app) 通过 wwwroot symlink 加载本模块:
```
wwwroot/pipeline_core -> ../pkgs/pipeline_core/wwwroot
```