AceTeam workflow nodes for local execution
Project description
aceteam-nodes
AceTeam workflow nodes for local CLI execution. Run AceTeam workflows on your own machine with any LLM provider.
Install
pip install aceteam-nodes
Quick Start
# Run a workflow
python -m aceteam_nodes.cli run examples/hello-llm.json --input '{"prompt":"Explain AI in one sentence"}'
# List available nodes
python -m aceteam_nodes.cli list-nodes
# Validate a workflow file
python -m aceteam_nodes.cli validate examples/hello-llm.json
Configuration
Create ~/.ace/config.yaml to configure API keys and defaults:
default_model: gpt-4o-mini
Set your API key via environment variable:
export OPENAI_API_KEY=sk-...
# or
export ANTHROPIC_API_KEY=sk-ant-...
How It Works
Workflow JSON ──> AceTeamWorkflow (load + validate)
│
▼
workflow-engine (DAG execution)
│
▼
AceTeamNode.run() per node
│ │
▼ ▼
litellm httpx/jinja2
(100+ LLMs) (API calls)
- A workflow JSON file defines nodes and their connections as a directed acyclic graph
AceTeamWorkflowvalidates the file and resolves node references- The
aceteam-workflow-engineexecutes nodes in topological order - Each node type implements
run()— LLM nodes call litellm, API nodes use httpx, etc. - Results flow through the graph until all outputs are produced
Available Nodes
| Node | Description |
|---|---|
| LLM | AI text generation via litellm (100+ providers) |
| APICall | HTTP requests with Jinja templating |
| Equal, NotEqual, GreaterThan, LessThan, And, Or, Not | Comparison/logic operators |
Development
# Setup
uv sync --extra dev
# Test
uv run pytest
# Lint & format
uv run ruff check && uv run ruff format
# Type check
uv run pyright
# Build
uv build
Related
- Ace CLI — TypeScript CLI that wraps this package for a streamlined user experience
- Workflow Engine — The DAG execution engine used under the hood
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aceteam_nodes-0.4.5.tar.gz
(123.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aceteam_nodes-0.4.5.tar.gz.
File metadata
- Download URL: aceteam_nodes-0.4.5.tar.gz
- Upload date:
- Size: 123.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fde7c2a5a65a90d4b3fc05bda80fbbc08c088c6d38f12335ce8687983f63ffe9
|
|
| MD5 |
7f37c933878dc2cafeb178e94a09e504
|
|
| BLAKE2b-256 |
18378a23f26de100db6e55f51dac8fe87a57decd32613a51d7cccc22a0253b5a
|
File details
Details for the file aceteam_nodes-0.4.5-py3-none-any.whl.
File metadata
- Download URL: aceteam_nodes-0.4.5-py3-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c842c7ea86632e43ab26fb92796788fee0e7d45b40c1fe210c4c1e156dda548
|
|
| MD5 |
90440bf6fb23f6b0b8fc94f9772a132f
|
|
| BLAKE2b-256 |
32f5a168bd5d7898dc7a15088061ab4108f18319ada171453076991bee9a81af
|