github-actions[bot] commited on
Commit
75d74eb
·
1 Parent(s): fc2f017

Auto-deploy from GitHub: 337a6e0812c20136eb0c017959a7d6f877bf0198

Browse files
Files changed (1) hide show
  1. app/services/worker.py +1 -1
app/services/worker.py CHANGED
@@ -48,7 +48,7 @@ async def worker_loop():
48
  task_id = row['id']
49
  input_text = row['input_text']
50
  system_prompt = row['system_prompt'] or "You are a helpful assistant."
51
- model = row.get('model', 'qwen')
52
 
53
  logger.info(f"\n{'='*60}\nProcessing task: {task_id} (model: {model})\n📌 Input: {input_text[:100]}...\n{'='*60}")
54
 
 
48
  task_id = row['id']
49
  input_text = row['input_text']
50
  system_prompt = row['system_prompt'] or "You are a helpful assistant."
51
+ model = row['model'] if 'model' in row.keys() else 'qwen'
52
 
53
  logger.info(f"\n{'='*60}\nProcessing task: {task_id} (model: {model})\n📌 Input: {input_text[:100]}...\n{'='*60}")
54