From 54a17ab1f330c226f40833b3c20cfaa148bfe618 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 25 Mar 2026 12:22:37 -0400 Subject: [PATCH] Add changelog for #4142 --- changelog/4142.changed.md | 1 + changelog/4142.deprecated.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 changelog/4142.changed.md create mode 100644 changelog/4142.deprecated.md 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.