From d740bab99e8dcb4fc16f5bdf9595408be8062d60 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:00:01 -0400 Subject: [PATCH] Add support for universal `LLMContext` to NVIDIA NIM LLM service --- src/pipecat/services/nim/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/nim/llm.py b/src/pipecat/services/nim/llm.py index fdfb8bf6b..052b94274 100644 --- a/src/pipecat/services/nim/llm.py +++ b/src/pipecat/services/nim/llm.py @@ -47,15 +47,6 @@ class NimLLMService(OpenAILLMService): self._has_reported_prompt_tokens = False self._is_processing = False - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as NimLLMService does not yet support universal LLMContext. - """ - return False - async def _process_context(self, context: OpenAILLMContext): """Process a context through the LLM and accumulate token usage metrics.