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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -22,12 +22,12 @@ 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"], echo=True)
26
-
27
  for out in output:
28
  stream = copy.deepcopy(out)
29
  print(stream["choices"][0]["text"])
30
- yield stream["choices"][0]["text"]
 
31
 
32
  history =["init",str(input_text_with_history)]
33
 
 
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
  for out in output:
27
  stream = copy.deepcopy(out)
28
  print(stream["choices"][0]["text"])
29
+ yield output.text
30
+
31
 
32
  history =["init",str(input_text_with_history)]
33