From 2f4d36a146e89f6e933af051b42e664ca9febacf Mon Sep 17 00:00:00 2001 From: Kwindla Hultman Kramer Date: Sat, 1 Mar 2025 15:44:10 -0800 Subject: [PATCH] docstring fixup --- src/pipecat/services/openai_realtime_beta/azure.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pipecat/services/openai_realtime_beta/azure.py b/src/pipecat/services/openai_realtime_beta/azure.py index 5951b1d89..5f046b8b0 100644 --- a/src/pipecat/services/openai_realtime_beta/azure.py +++ b/src/pipecat/services/openai_realtime_beta/azure.py @@ -21,7 +21,7 @@ except ModuleNotFoundError as e: class AzureRealtimeBetaLLMService(OpenAIRealtimeBetaLLMService): - """Subclass ofOpenAI Realtime API Service with adjustments for Azure's wss connection.""" + """Subclass of OpenAI Realtime API Service with adjustments for Azure's wss connection.""" def __init__( self, @@ -36,8 +36,6 @@ class AzureRealtimeBetaLLMService(OpenAIRealtimeBetaLLMService): api_key: The API key for the Azure OpenAI service. base_url: The base URL for the Azure OpenAI service. - All other constructor args are passed to the parent class OpenAIRealtimeBetaLLMService. - base_url should be set to the full Azure endpoint URL including the api-version and the deployment name. For example, wss://my-project.openai.azure.com/openai/realtime?api-version=2024-10-01-preview&deployment=my-realtime-deployment