work.jackmann.xyz
← Work

Software & Engineering · 2026

AI Pipeline Toolkit

Author & Maintainer

An orchestration toolkit for multi-step AI workflows — webhook triggers, local LLM inference via Ollama, and LangGraph state machines for complex agent pipelines. Designed for teams that need control without running a full MLOps stack.

Python · FastAPI · LangGraph

Teams building agentic workflows need orchestration beyond a single LLM call — but full MLOps platforms are overkill for webhook-triggered pipelines with a handful of steps. Existing tools either lack state management or require cloud-only inference.

  • LangGraph state machines model multi-step agent workflows with explicit state transitions.
  • FastAPI webhook ingress accepts external triggers and dispatches async jobs.
  • Ollama integration for local inference with automatic fallback to cloud providers.
  • CLI tooling for pipeline definition, testing, and local development.
  • Multi-step agent pipelines deployable with a single FastAPI process — no Kubernetes required for development.
  • Local Ollama inference eliminated cloud API costs during pipeline development and testing.
  • State machine model made debugging agent failures traceable step-by-step.
Unlimited
LangGraph state graph
Local + cloud
Ollama with provider fallback
FastAPI
Async webhook processing
1 command
CLI init + local run
Webhook IngressFastAPI async
CLI ToolkitInit · test · deploy
LangGraphState machine
OllamaLocal LLM
Cloud ProviderFallback inference
  • Orchestration

    LangGraph state machines

    Sequential function chains

    Explicit state graphs support branching, retries, and human-in-the-loop steps that function chains can't model cleanly.

  • Inference default

    Ollama local with cloud fallback

    Cloud-only (OpenAI/Anthropic)

    Local inference removes API cost and latency during development. Fallback ensures production reliability.

0%