-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpost_generator.py
52 lines (36 loc) · 1.37 KB
/
post_generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from llm_helper import llm
from few_shot import FewShotPosts
few_shot = FewShotPosts()
def get_length_str(length):
if length == "Short":
return "1 to 5 lines"
if length == "Medium":
return "6 to 10 lines"
if length == "Long":
return "11 to 15 lines"
def generate_post(length, language, tag):
prompt = get_prompt(length, language, tag)
response = llm.invoke(prompt)
return response.content
def get_prompt(length, language, tag):
length_str = get_length_str(length)
prompt = f'''
Generate a LinkedIn post using the below information. No preamble.
1) Topic: {tag}
2) Length: {length_str}
3) Language: {language}
If Language is Hinglish then it means it is a mix of Hindi and English.
The script for the generated post should always be English.
'''
# prompt = prompt.format(post_topic=tag, post_length=length_str, post_language=language)
examples = few_shot.get_filtered_posts(length, language, tag)
if len(examples) > 0:
prompt += "4) Use the writing style as per the following examples."
for i, post in enumerate(examples):
post_text = post['text']
prompt += f'\n\n Example {i+1}: \n\n {post_text}'
if i == 1: # Use max two samples
break
return prompt
if __name__ == "__main__":
print(generate_post("Medium", "English", "Mental Health"))