-
-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
Problem
autobot-frontend/src/composables/analytics/useEnvironmentAnalysis.ts:33 has a hardcoded AI model name:
const aiFilteringModel = ref('llama3.2:1b')After #2383 changed the default model to qwen3.5:9b, this reference is stale. The model name should come from SSOT config or a backend endpoint.
Discovered During
Code review of PR #2456 (decompose useSpecializedAnalysis, Issue #2372)
Related
- Cleanup: stale mistral:7b-instruct references after model change to qwen3.5:9b (#2383) #2418 (stale mistral refs -- closed, but this frontend ref was missed)
- Refactor: remove hardcoded mistral:7b-instruct strings, use SSOT constant #2383 (model change to qwen3.5:9b)
Fix
Replace hardcoded model string with a config-driven value.
Impact
Severity: low -- Wrong model may cause degraded AI filtering but no crash.
Reactions are currently unavailable