davidizzle commited on
Commit
466be59
·
1 Parent(s): ceb2dbe

Omit reasoning

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -129,5 +129,5 @@ if st.button("Generate"):
129
 
130
  result = tokenizer.decode(outputs[0], skip_special_tokens=True)
131
  st.markdown("### ✨ Output:")
132
- # final_thought = result.split("</think>\n")[1:]
133
  st.write(result)
 
129
 
130
  result = tokenizer.decode(outputs[0], skip_special_tokens=True)
131
  st.markdown("### ✨ Output:")
132
+ result = result.split("</think>\n")[1:]
133
  st.write(result)