pipecat-ai 1.5.0 it ships in the core package under pipecat.flows, so there is no separate pipecat-ai-flows package to install or keep version-matched.
Moving off the standalone package means two things: update your imports from pipecat_flows to pipecat.flows, and drop the APIs that were deprecated during the 0.0.x series. If you were already using the non-deprecated replacements, most of the changes below won’t affect you.
Before upgrading, search your codebase for the deprecated imports and patterns listed below to identify what needs to change.
Pipecat requires Python 3.11 or later. If you’re also coming from Pipecat
0.0.x, work through the Pipecat 1.0 migration
guide first. The standalone package’s own
release history is archived in the pipecat-flows
repository.
1. FlowManager Initialization
Thetts parameter was removed from FlowManager.__init__(). The built-in tts_say action now uses Pipecat’s TTSSpeakFrame directly and no longer needs a reference to your TTS service.
Before (1.0)
After (1.0)
What was removed
2. Node Transitions
Three deprecated APIs for controlling node transitions were removed. All three are replaced by consolidated handlers that return a(result, next_node) tuple, or by set_node_from_config() for imperative transitions.
Before (1.0)
transition_to on FlowsFunctionSchema:
transition_callback on FlowsFunctionSchema:
set_node() on FlowManager:
After (1.0)
Consolidated handler (preferred) — return a tuple of(result, next_node):
set_node_from_config():
What was removed
3. Static Flows
TheFlowConfig type and flow_config parameter were removed. Static flows defined all nodes upfront in a dictionary and transitioned by node name. Dynamic flows replaced them. You create NodeConfig objects at runtime and return them from handlers.
Before (1.0)
After (1.0)
What was removed
4. Function Definition Format
Provider-specific function definition dicts (OpenAI, Anthropic, Gemini formats) are no longer accepted in node configs. UseFlowsFunctionSchema or direct functions instead.
Before (1.0)
After (1.0)
UsingFlowsFunctionSchema:
What was removed
Still-Active Deprecations
role_messages: Replace the list-of-dicts role_messages field with the role_message string field. The string is sent as the LLM’s system instruction and persists across node transitions until a new node explicitly sets it again.
RESET_WITH_SUMMARY: Instead of using the RESET_WITH_SUMMARY context strategy, push an LLMSummarizeContextFrame in a pre-action to trigger on-demand summarization during a node transition. See the context summarization guide for details.