From 5bc0e49baa4a784ad1cada4600ecfe22e73b0d2c Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 15:23:35 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Perplexity LLM service --- src/pipecat/services/perplexity/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/perplexity/llm.py b/src/pipecat/services/perplexity/llm.py index 3e39206c6..bc4b220ac 100644 --- a/src/pipecat/services/perplexity/llm.py +++ b/src/pipecat/services/perplexity/llm.py @@ -84,15 +84,6 @@ class PerplexityLLMService(OpenAILLMService): return params - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as PerplexityLLMService 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.