From b22bdff6d078cdf6355ad3acad94e63d022be854 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 2 Sep 2025 10:57:46 -0400 Subject: [PATCH] Add support for universal `LLMContext` to Azure LLM service --- src/pipecat/services/azure/llm.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pipecat/services/azure/llm.py b/src/pipecat/services/azure/llm.py index 47a6ef280..a4b93f2a4 100644 --- a/src/pipecat/services/azure/llm.py +++ b/src/pipecat/services/azure/llm.py @@ -60,12 +60,3 @@ class AzureLLMService(OpenAILLMService): azure_endpoint=self._endpoint, api_version=self._api_version, ) - - @property - def supports_universal_context(self) -> bool: - """Check if this service supports universal LLMContext. - - Returns: - False, as Azure service does yet not support universal LLMContext. - """ - return False