zac commited on
Commit
012afc0
·
1 Parent(s): 0329016

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -18,10 +18,9 @@ def generate_text(input_text, history):
18
  output = llm(full_conversation, max_tokens=1024, stop=["Q:", "\n"], echo=True)
19
  response = output['choices'][0]['text']
20
  history.append([input_text, response])
21
-
22
- for i in range(len(response)):
23
- time.sleep(0.3)
24
- yield "You typed: " + message[: i+1]
25
 
26
 
27
 
 
18
  output = llm(full_conversation, max_tokens=1024, stop=["Q:", "\n"], echo=True)
19
  response = output['choices'][0]['text']
20
  history.append([input_text, response])
21
+ for i in range(len(response)):
22
+ time.sleep(0.3)
23
+ yield "You typed: " + message[: i+1]
 
24
 
25
 
26