The best way to build AI pipelines
Project description
PipelineUI
PipelineUI is a python package that allow you to create your own comfyui style backend for your ML code.
with pipelineUI we expose two new decorator that can be added to your python project to create graphical interface.
how to install
pip install pipeline-ui
locally
git clone
uv pip install -e .
Here is an example
create a example.py file
python
from pipeline_ui import PipelineUI
pui = PipelineUI()
@pui.node()
def add_numbers(a: int, b: int) -> int:
return a + b
@pui.node()
def multiply(a: int, b: int) -> int:
return a + b
@pui.workflow()
def math_workflow(a: int, b: int) -> int:
c = add_numbers(a, b)
d = multiply(c, d)
return d
start with python example.py this start an web interface at localhost:8114
where you can see your code graphically
commands
pui start pipeline_ui/examples/simple.py
pui publish pipeline_ui/examples/simple.py
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
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 pipeline_ui-0.0.4.tar.gz.
File metadata
- Download URL: pipeline_ui-0.0.4.tar.gz
- Upload date:
- Size: 409.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c9fd14c134c18d98ab2ebfc2fb9fbc89777be6f83b669d835a8bd3c24e1e2c6
|
|
| MD5 |
4050dac89f4c6631d92deb65aecbbdeb
|
|
| BLAKE2b-256 |
100570c4ed675256f7c0e14ece5e9772ce5795ca1d254be3247bfb874e52eabc
|
File details
Details for the file pipeline_ui-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pipeline_ui-0.0.4-py3-none-any.whl
- Upload date:
- Size: 800.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b702a5a545cbf741265d8718e706b19bdc457396e105dc55cf2fd5871b560151
|
|
| MD5 |
86585341f5c4913539143c39dfb0b59a
|
|
| BLAKE2b-256 |
208f15e7ed71d08f5677d6112576d56815342434f6bdb2f23e75ff2504220c47
|