From dfb7571fba9abdd2700eaa15b7e94dd5fbbfc411 Mon Sep 17 00:00:00 2001 From: James Briggs <35938317+jamescalam@users.noreply.github.com> Date: Tue, 23 Jan 2024 10:44:44 +0100 Subject: [PATCH] fix AzureOpenAILLM import --- semantic_router/llms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic_router/llms/__init__.py b/semantic_router/llms/__init__.py index fba198f5..b216f0b0 100644 --- a/semantic_router/llms/__init__.py +++ b/semantic_router/llms/__init__.py @@ -4,4 +4,4 @@ from semantic_router.llms.openai import OpenAILLM from semantic_router.llms.openrouter import OpenRouterLLM from semantic_router.llms.zure import AzureOpenAILLM -__all__ = ["BaseLLM", "OpenAILLM", "OpenRouterLLM", "CohereLLM"] +__all__ = ["BaseLLM", "OpenAILLM", "OpenRouterLLM", "CohereLLM", "AzureOpenAILLM"] -- GitLab