Merge pull request #4239 from pipecat-ai/mb/remove-deprecation-module-proxy

Remove DeprecatedModuleProxy and service re-export shims
This commit is contained in:
Mark Backman
2026-04-03 14:03:17 -04:00
committed by GitHub
41 changed files with 3 additions and 520 deletions

View File

@@ -0,0 +1 @@
- ⚠️ Removed `DeprecatedModuleProxy` and all service `__init__.py` re-export shims. Flat imports like `from pipecat.services.openai import OpenAILLMService` no longer work. Use the full submodule path instead: `from pipecat.services.openai.llm import OpenAILLMService`. This is already the established pattern across all examples and internal code.