fix: remove default for strix_llm, keep it required

This commit is contained in:
0xallam
2026-01-09 21:37:06 -08:00
committed by Ahmed Allam
parent 83efe3816f
commit 2e3dc0d276
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ class Config:
"""Configuration Manager for Strix.""" """Configuration Manager for Strix."""
# LLM Configuration # LLM Configuration
strix_llm = "openai/gpt-5" strix_llm = None
llm_api_key = None llm_api_key = None
llm_api_base = None llm_api_base = None
openai_api_base = None openai_api_base = None

View File

@@ -539,7 +539,7 @@ def main() -> None:
is_whitebox = bool(args.local_sources) is_whitebox = bool(args.local_sources)
posthog.start( posthog.start(
model=os.getenv("STRIX_LLM"), model=Config.get("strix_llm"),
scan_mode=args.scan_mode, scan_mode=args.scan_mode,
is_whitebox=is_whitebox, is_whitebox=is_whitebox,
interactive=not args.non_interactive, interactive=not args.non_interactive,