forked from DirkMeer/Intro_to_AI
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patharticle_generator.py
103 lines (75 loc) · 3.96 KB
/
article_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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import os
import uuid
import requests
from openai import OpenAI
from dotenv import load_dotenv
load_dotenv()
CLIENT = OpenAI(api_key=os.getenv('OPENAI_API_KEY'))
UNIQUE_ID = uuid.uuid4()
print("Reading content from content.txt...")
with open("content.txt", "r", encoding="utf-8") as file:
text_content = file.read()
print(f"Content read successfully. Length: {len(text_content)} characters.")
write_blog_article_instructions = f"""
Please write a blog article on the topic provided in the text below. The blog post should be around 2000 characters long and cover all the most important points from the material provided. You are a knowledgeable expert in the field, so please write in a professional tone, but make sure to keep it engaging, fun, and easy to read.
Use markdown formatting to structure the article with headings, bullet points, numbered lists, and other markdown features where appropriate. Make sure you only return the article in valid markdown format and do not include introduction statements that are not part of the article like "sure I can help you, here is the article:".
Please insert only a single  tag in the article, at an appropriate location, where the image will be inserted later. You can just use 'image' and 'image.png' as placeholders for now. Make sure you insert only a single image tag and do not include any other images in the article. Do not use ```markdown code blocks``` in the article or anywhere in your response, I know that the response will be markdown, so you do not have to indicate that.
Text:
{text_content}
Blog Article:
"""
print("Generating blog article...")
article_response = CLIENT.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "user", "content": write_blog_article_instructions}
]
)
blog_article = article_response.choices[0].message.content
if not blog_article:
print("Something went wrong, please try again.")
exit()
print(f"Blog article generated. Length: {len(blog_article)} characters.")
# project_name = blog_article[:25]
output_folder = f"output/{UNIQUE_ID}"
if not os.path.exists(output_folder):
os.makedirs(output_folder)
blog_article_save_location = f"{output_folder}/article.md"
with open(blog_article_save_location, "w", encoding="utf-8") as file:
file.write(blog_article)
print(f"Article saved as {blog_article_save_location}")
create_image_description_instructions = f"""
I have a blog article that I would like to create an image for. Please read through the article provided below and then come up with a prompt for an image that would be suitable for the content. Make sure your prompt doesn't request for any text to be included in the image, we want to include only visual elements but no text in the image itself.
Your prompt is going to be fed into DALL-E-3 to generate an image, so make sure that your prompt is descriptive enough to guide the model in creating a relevant image that goes well with the blog article provided.
Blog Article:
{blog_article}
Image Prompt:
"""
print("Getting prompt for image generation...")
image_prompt_response = CLIENT.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "user", "content": create_image_description_instructions}
]
)
image_generation_prompt = image_prompt_response.choices[0].message.content
if not image_generation_prompt:
print("Something went wrong, please try again.")
exit()
print(f"Generating image with prompt: {image_generation_prompt}")
dalle_response = CLIENT.images.generate(
prompt=image_generation_prompt,
model="dall-e-3",
response_format="url",
size="1024x1024",
n=1
)
image_url = dalle_response.data[0].url
image_save_location = f"{output_folder}/image.png"
if image_url:
image_response = requests.get(image_url)
with open(image_save_location, "wb") as image_file:
image_file.write(image_response.content)
print(f"Image saved as {image_save_location}")
else:
print("Image generation failed. Please try again.")