@minus-ai/create-skill 0.1.0-beta.18 → 0.1.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/asin/pipeline.py.tpl +1 -0
- package/templates/custom/pipeline.py.tpl +1 -0
- package/templates/default/pipeline.py.tpl +2 -2
- package/templates/file/pipeline.py.tpl +1 -0
- package/templates/keyword/pipeline.py.tpl +1 -0
- package/templates/pipeline.py.tpl +1 -0
- package/templates/.minus/session-counter +0 -1
- package/templates/custom/.minus/session-counter +0 -1
package/package.json
CHANGED
|
@@ -4,5 +4,5 @@ from minus_ai_sdk import Pipeline, PipelineContext, StepOutcome
|
|
|
4
4
|
class {{className}}(Pipeline):
|
|
5
5
|
|
|
6
6
|
async def step_1(self, ctx: PipelineContext) -> StepOutcome:
|
|
7
|
-
# TODO:
|
|
8
|
-
return StepOutcome.complete(payload={"text": "
|
|
7
|
+
# TODO: 实现「步骤1」的逻辑
|
|
8
|
+
return StepOutcome.complete(payload={"text": "步骤1完成"})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3
|