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.5.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.5-py3-none-any.whl (97.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: abstractflow-0.3.5.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.5.tar.gz
Algorithm Hash digest
SHA256 a88cedfe3c5f2133cdc73251453fba481a20ffec3ac9e140e7bcd185c09a7d95
MD5 10ec78a727354d370efbda2359552edf
BLAKE2b-256 78b38cd4955fea6f802bc70cdb9fb6cfabcd15711c82d9cb68dcb73fe5c8ab8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: abstractflow-0.3.5-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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 1b9f897c329ab77aeb8090bb09f5dd32ae76704c32d538764bae686d1c13bacf
MD5 2a6bdafd6e3e41c2537ebaf35efd0633
BLAKE2b-256 26606faf6e4f6f48430771a093d6161d8b93fa463ce7cc4c068a1623299ab5f8

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