Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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}
|
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")
|