File size: 4,025 Bytes
baf5540
067106a
6152cc0
 
067106a
4546f56
baf5540
bec1a6d
36d2a7c
 
4546f56
 
81a7e89
bec1a6d
 
678be94
255ea39
baf5540
36d2a7c
067106a
 
 
 
36d2a7c
1dceeea
067106a
 
 
f41e75a
067106a
 
 
36d2a7c
1dceeea
067106a
 
baf5540
 
067106a
 
 
36d2a7c
1dceeea
067106a
 
baf5540
 
067106a
 
baf5540
36d2a7c
 
 
9a5e4ee
 
baf5540
36d2a7c
067106a
baf5540
 
067106a
baf5540
36d2a7c
067106a
36d2a7c
 
 
9a5e4ee
 
baf5540
36d2a7c
067106a
 
 
 
36d2a7c
 
067106a
baf5540
 
 
 
067106a
 
 
baf5540
 
067106a
 
 
baf5540
067106a
 
baf5540
067106a
 
 
63cb2cf
da1e8a0
63cb2cf
 
 
067106a
 
baf5540
067106a
36d2a7c
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
104
105
106
107
108
import streamlit as st
from crewai import Agent, Task, Crew
from langchain_google_genai import ChatGoogleGenerativeAI
from dotenv import load_dotenv
import os
import nest_asyncio

# Load environment variables
load_dotenv()

# Apply nest_asyncio to allow nested event loops
nest_asyncio.apply()

# Initialize Google Gemini AI
llm = ChatGoogleGenerativeAI(
    api_key=os.getenv('GOOGLE_API_KEY'),
    model="models/gemini-pro"  # Replace with the correct model name
)

# Define Agents
planner = Agent(
    role="Content Planner",
    goal="Plan engaging and factually accurate content on {topic}",
    backstory="You're working on planning a blog article about the topic: {topic}. You collect information that helps the audience learn something and make informed decisions. Your work is the basis for the Content Writer to write an article on this topic.",
    llm=llm,
    allow_delegation=False,
    verbose=True
)

writer = Agent(
    role="Content Writer",
    goal="Write a compelling and well-structured blog post on {topic}.",
    backstory="You're a writer who uses the content plan to create a detailed blog post. Ensure it aligns with SEO best practices and the brand's voice.",
    llm=llm,
    allow_delegation=False,
    verbose=True
)

editor = Agent(
    role="Editor",
    goal="Edit a given blog post to align with the writing style of the organization.",
    backstory="You are an editor who receives a blog post from the Content Writer. Your goal is to review the blog post to ensure that it follows journalistic best practices, provides balanced viewpoints when providing opinions or assertions, and also avoids major controversial topics or opinions when possible.",
    llm=llm,
    allow_delegation=False,
    verbose=True
)

# Define Tasks
plan = Task(
    description=(
        "1. Prioritize the latest trends, key players, and noteworthy news on {topic}.\n"
        "2. Identify the target audience, considering their interests and pain points.\n"
        "3. Develop a detailed content outline including an introduction, key points, and a call to action.\n"
        "4. Include SEO keywords and relevant data or sources.\n"
        "5. The plan should be detailed and cover all aspects of the topic."
    ),
    expected_output="A comprehensive content plan document with an outline, audience analysis, SEO keywords, and resources.",
    agent=planner,
)

write = Task(
    description=(
        "1. Use the content plan to craft a compelling blog post on {topic}.\n"
        "2. Incorporate SEO keywords naturally.\n"
        "3. Sections/Subtitles are properly named in an engaging manner.\n"
        "4. Ensure the post is structured with an engaging introduction, insightful body, and a summarizing conclusion.\n"
        "5. Proofread for grammatical errors and alignment with the brand's voice.\n"
        "6. Each section should have 2 or 3 paragraphs.\n"
        "7. The entire blog post should be at least 1000 words."
    ),
    expected_output="A well-written blog post in markdown format, ready for publication.",
    agent=writer,
)

edit = Task(
    description=("Proofread the given blog post for grammatical errors and alignment with the brand's voice."),
    expected_output="A polished and error-free blog post in markdown format, ready for publication.",
    agent=editor
)

# Define Crew
crew = Crew(
    agents=[planner, writer, editor],
    tasks=[plan, write, edit],
    verbose=2
)

# Streamlit App
def main():
    st.title("Content Creation Assistant")

    # Input for topic
    topic = st.text_input("Enter the topic for the blog post:")

    if st.button("Generate Content"):
        if topic:
            with st.spinner('Generating content...'):
                try:
                    result = crew.kickoff(inputs={"topic": topic})
                    st.markdown(result)
                except Exception as e:
                    st.error(f"An error occurred: {e}")
        else:
            st.error("Please enter a topic.")

if __name__ == "__main__":
    main()