Skip to main content

Diagram-based AI workflow generation built on AbstractCore

Project description

AbstractFlow

Diagram-based, durable AI workflows for Python.

AbstractFlow provides:

  • A portable workflow format (VisualFlow JSON) and helpers to execute it from any host (abstractflow.visual).
  • A simple programmatic API (Flow, FlowRunner) backed by AbstractRuntime.
  • A reference visual editor app in web/ (FastAPI backend + React frontend).

Project status: Pre-alpha (pyproject.toml: Development Status :: 2 - Pre-Alpha). Expect breaking changes.

Capabilities (implemented)

  • Execute programmatic flows (FlowFlowRunner) with a default in-memory runtime.
  • Execute portable VisualFlow JSON from any host process (abstractflow.visual).
  • Durable waits and resumption via AbstractRuntime (e.g. user/event/schedule waits).
  • Package a flow tree as a WorkflowBundle (.flow) via the CLI.
  • Author/run VisualFlows in the reference web editor (web/).

Evidence (code): abstractflow/runner.py, abstractflow/visual/executor.py, abstractflow/cli.py, web/backend/routes/ws.py.

Docs

  • Start here: docs/getting-started.md
  • API reference: docs/api.md
  • VisualFlow format: docs/visualflow.md
  • Visual editor: docs/web-editor.md
  • CLI: docs/cli.md
  • FAQ: docs/faq.md
  • Architecture: docs/architecture.md
  • Docs index: docs/README.md

Installation

pip install abstractflow

Requirements: Python 3.10+ (pyproject.toml: requires-python).

Optional extras:

  • Agent nodes (ReAct workflows): pip install "abstractflow[agent]"
  • Visual editor backend (FastAPI): pip install "abstractflow[server]"
  • Visual editor backend + Agent nodes (recommended): pip install "abstractflow[editor]"
  • Dev tools (tests/formatting): pip install "abstractflow[dev]"

Notes:

  • abstractflow depends on AbstractRuntime and abstractcore[tools] (see pyproject.toml).
  • Some VisualFlow node types require additional packages (e.g. memory_kg_* nodes need abstractmemory).

Quickstart (programmatic)

from abstractflow import Flow, FlowRunner

flow = Flow("linear")
flow.add_node("double", lambda x: x * 2, input_key="value", output_key="doubled")
flow.add_node("add_ten", lambda x: x + 10, input_key="doubled", output_key="final")
flow.add_edge("double", "add_ten")
flow.set_entry("double")

result = FlowRunner(flow).run({"value": 5})
print(result)  # {"success": True, "result": 20}

Quickstart (execute a VisualFlow JSON)

import json
from abstractflow.visual import VisualFlow, execute_visual_flow

with open("my-flow.json", "r", encoding="utf-8") as f:
    vf = VisualFlow.model_validate(json.load(f))
result = execute_visual_flow(vf, {"prompt": "Hello"}, flows={vf.id: vf})
print(result)  # {"success": True, "waiting": False, "result": ...}

If your flow uses subflows, load all referenced *.json into the flows={...} mapping (see docs/getting-started.md).

Visual editor (local)

The visual editor is split into:

  • a Python backend (FastAPI) shipped with abstractflow[editor] (or abstractflow[server])
  • a JS frontend shipped as @abstractframework/flow (runs via npx)
# Terminal 1: Editor backend (FastAPI)
pip install "abstractflow[editor]"
abstractflow serve --reload --port 8080

# Terminal 2: Editor UI (static server + /api proxy)
npx @abstractframework/flow

Open:

Optional: run an AbstractGateway at http://127.0.0.1:8081 and configure it in the UI “Connect” modal (used for embeddings-backed KG and bundle publishing). See docs/web-editor.md and docs/architecture.md.

CLI (WorkflowBundle .flow)

abstractflow bundle pack web/flows/ac-echo.json --out /tmp/ac-echo.flow
abstractflow bundle inspect /tmp/ac-echo.flow
abstractflow bundle unpack /tmp/ac-echo.flow --dir /tmp/ac-echo

See docs/cli.md and abstractflow/cli.py.

Related projects

Changelog

See CHANGELOG.md.

Contributing

See CONTRIBUTING.md.

Security

See SECURITY.md.

Acknowledgments

See ACKNOWLEDMENTS.md.

License

MIT. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

abstractflow-0.3.7.tar.gz (151.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

abstractflow-0.3.7-py3-none-any.whl (97.6 kB view details)

Uploaded Python 3

File details

Details for the file abstractflow-0.3.7.tar.gz.

File metadata

  • Download URL: abstractflow-0.3.7.tar.gz
  • Upload date:
  • Size: 151.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for abstractflow-0.3.7.tar.gz
Algorithm Hash digest
SHA256 6bd532e7c67a06208d53d234507b00e841f2c6bf72f17738b9fe666b7de471d7
MD5 41b2f01081098969872066a9ab29e3ad
BLAKE2b-256 de03e6e4d79cc85f4443a71856be6875c3caa1fd530fe877a8e57b9c557cc626

See more details on using hashes here.

File details

Details for the file abstractflow-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: abstractflow-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 97.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for abstractflow-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 15fb8aa78888d71551e6cd9d0a99dbe0d71dfa256d389ea9473d58e0691bc210
MD5 a79b2f39e4b7cd7d7c0ce361297e3da7
BLAKE2b-256 33d13c3720f2a7d695d6ded27469f83fb8e814fcb240bb867f604556d419eb1d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page