zac commited on
Commit
2bed47b
·
1 Parent(s): 957f137

Update app.py

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