Spaces:
Sleeping
Sleeping
Krzysztof Krystian Jankowski
commited on
Commit
·
8dbfa9e
1
Parent(s):
217d1cb
new prompt
Browse files
app.py
CHANGED
@@ -10,7 +10,12 @@ def getLlamaResponse(input_text, no_words, blog_style):
|
|
10 |
# create a prompt
|
11 |
|
12 |
template="""
|
|
|
|
|
|
|
13 |
Write a blog post about the topic: {input_text} in {blog_style} style. The blog should be {no_words} words long.
|
|
|
|
|
14 |
"""
|
15 |
prompt=PromptTemplate(input_variables=["blog_style", "input_text", "no_words"],
|
16 |
template=template)
|
|
|
10 |
# create a prompt
|
11 |
|
12 |
template="""
|
13 |
+
<|im_start|>system
|
14 |
+
You are a helping bot, ghost writer for weblog.<|im_end|>
|
15 |
+
<|im_start|>user
|
16 |
Write a blog post about the topic: {input_text} in {blog_style} style. The blog should be {no_words} words long.
|
17 |
+
<|im_end|>
|
18 |
+
<|im_start|>assistant
|
19 |
"""
|
20 |
prompt=PromptTemplate(input_variables=["blog_style", "input_text", "no_words"],
|
21 |
template=template)
|