| 49 | |
| 50 | |
| 51 | class PipelineState(TypedDict): |
| 52 | history: Annotated[str, operator.add] |
| 53 | task: Annotated[str, operator.add] |
| 54 | condition: Annotated[bool, lambda x, y: y] |
| 55 | |
| 56 | def execute_step(name:str, state: PipelineState, prompt_template: str, llm) -> PipelineState: |
| 57 | logger(f"{name} is working...") |
no outgoing calls
no test coverage detected