Compose agentic graphs your way. Batteries-included connectors, first-class observability, and a one-line deploy to Google Cloud.
A thin, composable core with the integrations and deploy story you'd otherwise build yourself.
Bring your own control flow. No forced abstractions, no hidden magic — just a graph and your functions.
First-class integrations for storage, HTTP, queues, vector DBs, and popular SaaS tools — batteries included.
corvide deploy ships to Cloud Run — autoscaling, secrets, and logging wired for you out of the box.
Every node, token, and tool call is traced. Time-travel through any run to see exactly what happened.
Checkpoints and resumable state keep long-running agents alive across restarts, retries, and failures.
Plain functions and decorators with full type hints. If you know Python, you already know corvide.
Any Python function becomes a node with a single decorator.
@node def plan(state): return llm(state.goal)
Wire nodes into a graph with conditional edges and branches.
g = Graph()
g.connect(
plan, act, review,
branch=on_error)
One command pushes your graph to Google Cloud Run.
$ corvide deploy \
--target gcloud
✓ live at run.app
Comparison reflects corvide's design goals. LangGraph is a trademark of its respective owners.
Open source, Apache-2.0, and production-ready. Give it a star and start building.