diff --git a/changelog/4142.changed.md b/changelog/4142.changed.md new file mode 100644 index 000000000..06fa50f74 --- /dev/null +++ b/changelog/4142.changed.md @@ -0,0 +1 @@ +- `GrokLLMService` and `GrokRealtimeLLMService` now live in the `pipecat.services.xai` module alongside `XAIHttpTTSService`, since all three use the same xAI API. Update imports from `pipecat.services.grok.*` to `pipecat.services.xai.*` (e.g. `from pipecat.services.xai.llm import GrokLLMService`). diff --git a/changelog/4142.deprecated.md b/changelog/4142.deprecated.md new file mode 100644 index 000000000..a17444edd --- /dev/null +++ b/changelog/4142.deprecated.md @@ -0,0 +1 @@ +- `pipecat.services.grok.llm`, `pipecat.services.grok.realtime.llm`, and `pipecat.services.grok.realtime.events` are deprecated. The old import paths still work but emit a `DeprecationWarning`; use `pipecat.services.xai.llm`, `pipecat.services.xai.realtime.llm`, and `pipecat.services.xai.realtime.events` instead.