zac commited on
Commit
fccaca4
·
1 Parent(s): 0b94902

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def generate_text(input_text, history):
22
  input_text_with_history = f"{history[-1][1]}"+ "\n"
23
  input_text_with_history += f"Q: {input_text}" + "\n" +" A:"
24
  print("new input", input_text_with_history)
25
- output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"], stream=True)
26
 
27
  for out in output:
28
  stream = copy.deepcopy(out)
 
22
  input_text_with_history = f"{history[-1][1]}"+ "\n"
23
  input_text_with_history += f"Q: {input_text}" + "\n" +" A:"
24
  print("new input", input_text_with_history)
25
+ output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"], echo=True)
26
 
27
  for out in output:
28
  stream = copy.deepcopy(out)