From da18d0a5625528059f319c55c19d3de9028154fb Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 14:24:22 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Fireworks AI LLM service --- src/pipecat/services/fireworks/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/fireworks/llm.py b/src/pipecat/services/fireworks/llm.py index 194adfc51..29c3f0284 100644 --- a/src/pipecat/services/fireworks/llm.py +++ b/src/pipecat/services/fireworks/llm.py @@ -82,12 +82,3 @@ class FireworksLLMService(OpenAILLMService): params.update(self._settings["extra"]) return params - - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as FireworksLLMService does not yet support universal LLMContext. - """ - return False