fix: remove default for strix_llm, keep it required
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user