We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f677ef commit 328ba36Copy full SHA for 328ba36
libs/partners/openai/tests/integration_tests/llms/test_azure.py
@@ -19,6 +19,15 @@
19
os.environ.get("AZURE_OPENAI_LLM_DEPLOYMENT_NAME", ""),
20
)
21
22
+pytestmark = pytest.mark.skipif(
23
+ True,
24
+ reason=(
25
+ "This entire module is skipped as all Azure OpenAI models supporting text "
26
+ "completions are retired. See: "
27
+ "https://learn.microsoft.com/en-us/azure/ai-foundry/openai/concepts/legacy-models"
28
+ ),
29
+)
30
+
31
32
def _get_llm(**kwargs: Any) -> AzureOpenAI:
33
return AzureOpenAI( # type: ignore[call-arg, call-arg, call-arg]
0 commit comments