{"slug": "llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes", "title": "LlamaIndex Workflows Is Now a Standalone Package. Its Typed State Is What Makes That Matter.", "summary": "LlamaIndex has released Workflows 1.0 as a standalone package, decoupling its event-driven orchestration engine from the LlamaIndex core. The key feature is typed, serializable state using Pydantic models, enabling workflows to be paused, checkpointed, or recovered mid-run without LLM dependencies.", "body_md": "Member-only story\n\n# LlamaIndex Workflows Is Now a Standalone Package. Its Typed State Is What Makes That Matter.\n\nIf you learned to build LlamaIndex agents by writing `from llama_index.core.workflow import Workflow`\n\n, that import is now a compatibility shim. The orchestration engine underneath it has moved out on its own. As of the [Workflows 1.0 announcement](https://www.llamaindex.ai/blog/announcing-workflows-1-0-a-lightweight-framework-for-agentic-systems), the code that routes events between your agent's steps lives in a separate package — `pip install llama-index-workflows`\n\n— that imports as plain `workflows`\n\nand does not depend on `llama_index`\n\nat all.\n\nThat sounds like packaging trivia. It isn’t. When I installed the package and inspected what actually came down the wire, the interesting part wasn’t the new import path. It was that the run state your steps read and write is now a typed Pydantic model you can freeze to JSON mid-run and rebuild later. That single property is what turns an event loop into something you can pause for human review, checkpoint before a risky step, or recover after a crash.\n\nThis walkthrough installs the real package, verifies the split against the installed code rather than the blog copy, and runs a small event-driven workflow — with zero LLM calls — to show what typed, serializable state buys you.\n\n## First, the version gotcha nobody mentions\n\nThe blog calls it “Workflows 1.0.” The package does not agree.\n\n``` python\n$ pip install llama-index-workflows$ python -c \"import importlib.metadata as m…\n```\n\n", "url": "https://wpnews.pro/news/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes", "canonical_source": "https://pub.towardsai.net/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes-that-matter-55f0ce53d2a5?source=rss----98111c9905da---4", "published_at": "2026-07-18 18:01:02+00:00", "updated_at": "2026-07-18 18:27:44.648231+00:00", "lang": "en", "topics": ["ai-tools", "developer-tools", "ai-agents", "ai-infrastructure"], "entities": ["LlamaIndex", "Workflows", "Pydantic"], "alternates": {"html": "https://wpnews.pro/news/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes", "markdown": "https://wpnews.pro/news/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes.md", "text": "https://wpnews.pro/news/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes.txt", "jsonld": "https://wpnews.pro/news/llamaindex-workflows-is-now-a-standalone-package-its-typed-state-is-what-makes.jsonld"}}