Flowra — flow infrastructure for building stateful LLM agents
Project description
Flowra
Flow infra for building stateful, persistent LLM agents with tool use, parallel execution, and crash recovery. Requires Python 3.12+.
Features
- State machine agents — define agents as
Agent[Spec, Result]classes with@stepmethods, a single entry point, and typed spec/result contracts - Persistent state —
Scalar[T]andAppendOnlyList[T]with incremental dirty-tracking and pluggable storage (in-memory, file-based, or custom) - Tool integration —
@tooldecorator for local functions, MCP server support, DI into tool handlers, agents as tools for LLM-driven delegation - LLM abstraction — provider-agnostic
LLMProviderinterface with immutable message types and real-time streaming (shipsAnthropicVertexProvider,GoogleVertexProvider,OpenAIProvider) - Agents as tools —
@agent_tooldecorator exposes an agent as a tool the LLM can call autonomously; sub-agent runs its own system prompt and tool loop - Cooperative interrupts —
InterruptTokenfor graceful cancellation across the entire execution tree - Pre-built agents —
ChatAgent(multi-turn chat with session history) andToolLoopAgent(single-turn LLM tool loop with hooks and caching)
Installation
# Base package (no LLM providers)
pip install flowra
# With specific providers
pip install flowra[anthropic]
pip install flowra[openai]
pip install flowra[google]
# All providers
pip install flowra[all]
Quick start
import asyncio
from flowra.agent import AgentRuntime
from flowra.lib import LLMConfig
from flowra.lib.chat import ChatAgent, ChatConfig, ChatResult, ChatSpec
from flowra.llm import LLMProvider, SystemMessage, TextBlock
from flowra.llm.providers.anthropic_vertex import AnthropicVertexProvider
from flowra.tools import ToolRegistry
async def main() -> None:
async with (
AnthropicVertexProvider() as provider,
await ToolRegistry.create([]) as registry,
):
config = ChatConfig(
llm_config=LLMConfig(model="claude-sonnet-4-5@20250929"),
system=[SystemMessage(blocks=[TextBlock(text="You are a helpful assistant.")])],
)
runtime = AgentRuntime(
agents={"chat": ChatAgent},
services={LLMProvider: provider, ToolRegistry: registry, ChatConfig: config},
)
while True:
user_input = input("You: ")
if not user_input:
break
result = await runtime.run(agent=ChatAgent, spec=ChatSpec(user_message=user_input))
if isinstance(result, ChatResult) and result.response:
print(f"Assistant: {result.response}")
asyncio.run(main())
Package structure
flowra/
├── llm/ # LLM abstraction (messages, blocks, provider interface)
├── tools/ # Tool definition, registration, execution
├── agent/ # Agent framework + execution engine + persistence
└── lib/ # Pre-built agents (ChatAgent, ToolLoopAgent, hooks, caching)
Documentation
- Getting Started — from installation to a working chatbot with tools in 5 minutes
- Working with LLMs — providers, streaming, structured output, caching, extended thinking
- Tools — tool groups, MCP servers, service injection
- Agents — custom agents, state machines, control flow, parallel execution
- Patterns — multi-agent patterns: router, pipeline, race, fan-out
- Observability — hooks, spans, MLflow and OTel integrations
Development
make deps # install dependencies (uv sync)
make check # lint + test
make chat # run interactive console chat example
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flowra-0.0.22.tar.gz
(441.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
flowra-0.0.22-py3-none-any.whl
(111.4 kB
view details)
File details
Details for the file flowra-0.0.22.tar.gz.
File metadata
- Download URL: flowra-0.0.22.tar.gz
- Upload date:
- Size: 441.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91d561587baf06545e1094a08efbdd0cb8ee1f91059b7b1075f7ac083f984b57
|
|
| MD5 |
17dc1a8c8a55aa87e8960c1c9fbc4d4d
|
|
| BLAKE2b-256 |
4273f3ca694d5cc30e02cbe6c4ff2df336de9811bad77058987cdd1f9eacbbe7
|
File details
Details for the file flowra-0.0.22-py3-none-any.whl.
File metadata
- Download URL: flowra-0.0.22-py3-none-any.whl
- Upload date:
- Size: 111.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
563c761874116ad6d8c2b25d970772341d3acc546b8e60ae62346d0c09c406a9
|
|
| MD5 |
73258cec7ecb148845e8fd7b0cc9e70f
|
|
| BLAKE2b-256 |
e69666751a76402c90fb7324c76e3d5d2b4f22615cf806fcf67fef1c89414bca
|