M.J. Schermer

Nyno - Open-source n8n alternative for building AI YAML Workflows

by
"Unlike with n8n, you and your clients never have to request a commercial license to run Nyno workflows. This was the main reason I started building Nyno." – MJ

Add a comment

Replies

Best
M.J. Schermer
Maker
📌

I believe large language models have reached their limits. More advanced intelligence & automation (including AGI) will likely emerge from workflow-driven systems that combine reasoning, orchestration, and execution at scale.

But we cannot rely on existing tools like n8n to take us much further, because they don't scale well (see also benchmarks https://nyno.dev/n8n-vs-nyno-for...) and it can become costly quickly scaling up your workflows (even on your own hardware due to their non open-source fair-use license.

Unlike with n8n, you and your clients never have to request a commercial license to run Nyno workflows. This was the main reason I started building Nyno.

M.J. Schermer

Extra: Nyno also has a Python driver available on PyPi, so you can use these GUI-build workflows in any Python project (with minimum latency): https://pypi.org/project/nyno/

Install

uv add nyno

Usage

from nyno import NynoClient

def main():
    client = NynoClient(
        credentials="change_me",
        host="127.0.0.1",
        port=9024,
    )
    print("workflow test", client.run_workflow('/test'))
    print("Client created:", client)

if __name__ == "__main__":
    main()