A visual node-based workflow editor for creating and executing computational graphs with Python. Psynapse is meant to be the single no-code workflow editor that lets you harness the entire power of the python ecosystem using simple nodepacks and intuitive drag-and-drop interface.
demo.mp4
- Visual Node Editor: Drag-and-drop interface built with ReactFlow
- Python Backend: FastAPI server with real-time execution streaming
- Extensible Nodepacks: Add custom Python functions as nodes
- Type-Safe: Full TypeScript frontend and type-hinted Python backend
- Progress Tracking: Real-time progress updates for long-running operations
- Multiple Node Types: Functions, variables, lists, and view nodes
docker compose -f docker/docker-compose.yml up --buildFor LLM nodepacks, use:
OPTIONAL_DEPS=llm docker compose -f docker/docker-compose.yml up --buildAccess the editor at http://localhost:5173
Backend:
uv sync
psynapse-backend run --reloadFrontend:
cd frontend
npm install
npm run dev- Backend (psynapse_backend): FastAPI server with graph execution engine
- Frontend (frontend): React 19 + TypeScript + Vite
- Nodepacks (nodepacks): Extensible Python function libraries
Add a new directory in nodepacks/ with an ops.py file:
def my_function(text: str, count: int = 1) -> str:
"""Repeats text multiple times."""
return text * countRestart the backend to auto-register your nodes.