added a newline in header
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ def llama_generation(input_text: str,
|
|
36 |
|
37 |
# Header prompt
|
38 |
header = '''Your are a helpful AI called amphisbeana.
|
39 |
-
You will help the user, by giving accurate but creative response'''
|
40 |
|
41 |
input_ids = llama_tokenizer.encode(input_text + header,
|
42 |
return_tensors='pt').to('cuda')
|
|
|
36 |
|
37 |
# Header prompt
|
38 |
header = '''Your are a helpful AI called amphisbeana.
|
39 |
+
You will help the user, by giving accurate but creative response.\n'''
|
40 |
|
41 |
input_ids = llama_tokenizer.encode(input_text + header,
|
42 |
return_tensors='pt').to('cuda')
|