Version 0.1.0
Nodex
Fast, minimal, decorator-first LangGraph agents. Nodex gives Python agent builders the same kind of obvious starting path that Express gave Node developers.
terminal
$ pip install nodex-ai
$ nodex new my-agent
$ cd my-agent
$ nodex dev agent:app
from nodex import Agent
app = Agent(name="hello-agent")
@app.node(next="end")
def start(state):
return {"message": "hello from nodex"}
app.run()