Skip to content

Commit

Permalink
Remove AzurePhiModel from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Oct 22, 2024
1 parent 847bcc1 commit 9885886
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
OllamaLLM,
OpenaiLLM,
AnthropicLLM,
AzurePhiModel,
Model,
)
from blendsql import LLMQA, LLMMap, LLMJoin
Expand Down Expand Up @@ -57,8 +56,8 @@ def pytest_generate_tests(metafunc):
model_list.append(AnthropicLLM("claude-3-haiku-20240307", caching=False))

# Azure Phi check
if all(os.getenv(k) is not None for k in ["AZURE_PHI_KEY", "AZURE_PHI_URL"]):
model_list.append(AzurePhiModel(caching=False))
# if all(os.getenv(k) is not None for k in ["AZURE_PHI_KEY", "AZURE_PHI_URL"]):
# model_list.append(AzurePhiModel(caching=False))

metafunc.parametrize("model", model_list)

Expand Down

0 comments on commit 9885886

Please sign in to comment.