zac commited on
Commit
a83455d
·
1 Parent(s): 5e963d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/Vigogne-2-7B-Instruct-
10
 
11
 
12
  def generate_text(input_text):
13
- output = llm(f"Q: {input_text} A:", max_tokens=521, stop=["Q:", "\n"], stream=True,)
14
  return output['choices'][0]['text']
15
 
16
  input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")
 
10
 
11
 
12
  def generate_text(input_text):
13
+ output = llm(f"Q: {input_text} \n A:", max_tokens=521, stop=["Q:", "\n"], echo=True,)
14
  return output['choices'][0]['text']
15
 
16
  input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")