gllm-pipeline-binary 0.4.15__cp312-cp312-win_amd64.whl → 0.4.16__cp312-cp312-win_amd64.whl
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.
- gllm_pipeline/{schema.pyi → alias.pyi} +2 -0
- gllm_pipeline/steps/_func.pyi +512 -376
- gllm_pipeline/steps/branching_step.pyi +1 -1
- gllm_pipeline/steps/component_step.pyi +10 -5
- gllm_pipeline/steps/conditional_step.pyi +16 -11
- gllm_pipeline/steps/guard_step.pyi +20 -2
- gllm_pipeline/steps/map_reduce_step.pyi +11 -5
- gllm_pipeline/steps/parallel_step.pyi +9 -5
- gllm_pipeline/steps/state_operator_step.pyi +9 -4
- gllm_pipeline/steps/subgraph_step.pyi +12 -5
- gllm_pipeline/types.pyi +10 -0
- gllm_pipeline/utils/__init__.pyi +9 -0
- gllm_pipeline/utils/has_inputs_mixin.pyi +37 -18
- gllm_pipeline/utils/mermaid.pyi +1 -1
- gllm_pipeline/utils/step_execution.pyi +1 -1
- gllm_pipeline.cp312-win_amd64.pyd +0 -0
- {gllm_pipeline_binary-0.4.15.dist-info → gllm_pipeline_binary-0.4.16.dist-info}/METADATA +1 -1
- {gllm_pipeline_binary-0.4.15.dist-info → gllm_pipeline_binary-0.4.16.dist-info}/RECORD +20 -19
- {gllm_pipeline_binary-0.4.15.dist-info → gllm_pipeline_binary-0.4.16.dist-info}/WHEEL +0 -0
- {gllm_pipeline_binary-0.4.15.dist-info → gllm_pipeline_binary-0.4.16.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
from gllm_pipeline.steps.pipeline_step import BasePipelineStep as BasePipelineStep
|
|
2
|
+
from gllm_pipeline.types import Val as Val
|
|
2
3
|
|
|
3
4
|
PipelineSteps = BasePipelineStep | list[BasePipelineStep]
|
|
5
|
+
InputMapSpec = dict[str, str | Val] | list[str | dict[str, str] | dict[str, Val]]
|