robinhad commited on
Commit
1e3f8c3
·
verified ·
1 Parent(s): 3c3f8d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def respond(
49
  add_generation_prompt=True,
50
  enable_thinking=True,
51
  )
52
- # input_text += "<think>" # TODO: remove short term fix
53
  print(input_text)
54
  inputs = tokenizer(input_text, return_tensors="pt").to(model.device) # .to(device)
55
 
 
49
  add_generation_prompt=True,
50
  enable_thinking=True,
51
  )
52
+ input_text += "<think>" # TODO: remove short term fix
53
  print(input_text)
54
  inputs = tokenizer(input_text, return_tensors="pt").to(model.device) # .to(device)
55