Skip to content

Commit 7c86562

Browse files
author
Kunjan Shah
committed
refactor(llm): Revert making Groq a default LLM client
1 parent 1fb5174 commit 7c86562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎giskard/llm/client/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_default_llm_api() -> str:
3737
if _default_llm_api is None:
3838
_default_llm_api = os.getenv(
3939
"GSK_LLM_API",
40-
"azure" if "AZURE_OPENAI_API_KEY" in os.environ else "groq" if "GROQ_API_KEY" in os.environ else "openai",
40+
"azure" if "AZURE_OPENAI_API_KEY" in os.environ else "openai",
4141
).lower()
4242

4343
if _default_llm_api not in {"azure", "openai", "groq"}:

0 commit comments

Comments
 (0)