mikeboone Claude Opus 4.8 commited on
Commit
60fd9b1
·
1 Parent(s): 194f181

fix: log the actual (resolved) model in semantics step, not stale llm_model

Browse files

The progress line printed the raw upstream llm_model (e.g. 'gpt-5.5') before
ModelSemanticUpdater ran it through resolve_model_name(), which currently
force-routes everything to claude-sonnet-4-6 (TEMPORARY_MODEL_OVERRIDE). Log
updater.llm_model so the message reflects the model actually used.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Files changed (1) hide show
  1. thoughtspot_deployer.py +1 -1
thoughtspot_deployer.py CHANGED
@@ -3679,9 +3679,9 @@ class ThoughtSpotDeployer:
3679
  if company_research:
3680
  try:
3681
  from model_semantic_updater import ModelSemanticUpdater
3682
- log_progress(f"Generating model description, synonyms, and AI context with {llm_model}...")
3683
  sem_start = time.time()
3684
  updater = ModelSemanticUpdater(self, llm_model=llm_model)
 
3685
 
3686
  model_description = updater.generate_model_description(
3687
  company_research=company_research,
 
3679
  if company_research:
3680
  try:
3681
  from model_semantic_updater import ModelSemanticUpdater
 
3682
  sem_start = time.time()
3683
  updater = ModelSemanticUpdater(self, llm_model=llm_model)
3684
+ log_progress(f"Generating model description, synonyms, and AI context with {updater.llm_model}...")
3685
 
3686
  model_description = updater.generate_model_description(
3687
  company_research=company_research,