Go-Raw commited on
Commit
d287a82
·
verified ·
1 Parent(s): 5aeb336

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def generate_debate(topic):
21
  f"{instruction}\n"
22
  f"Write 3–4 sentences."
23
  )
24
- output = pipe(prompt, max_new_tokens=180, temperature=0.7)[0]['generated_text']
25
  results.append(f"### {label}\n{output.strip()}")
26
  return "\n\n".join(results)
27
 
 
21
  f"{instruction}\n"
22
  f"Write 3–4 sentences."
23
  )
24
+ output = pipe(prompt, max_new_tokens=150, temperature=0.7)[0]['generated_text']
25
  results.append(f"### {label}\n{output.strip()}")
26
  return "\n\n".join(results)
27