From 8c2fd9cd8b6109755f8d0c4e60fe23fb73eeeb7e Mon Sep 17 00:00:00 2001 From: Antaripa Saha Date: Fri, 20 Dec 2024 13:52:53 +0530 Subject: [PATCH] readme.md file added --- .../social_media_content_planner/readme.md | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 cookbook/examples/workflows/social_media_content_planner/readme.md diff --git a/cookbook/examples/workflows/social_media_content_planner/readme.md b/cookbook/examples/workflows/social_media_content_planner/readme.md new file mode 100644 index 000000000..0d19a7658 --- /dev/null +++ b/cookbook/examples/workflows/social_media_content_planner/readme.md @@ -0,0 +1,55 @@ +# Content Creator Agent Workflow + +The Content Creator Agent Workflow is a multi-agent workflow designed to streamline the process of generating and managing social media content. It assists content creators in planning, creating, and scheduling posts across various platforms. + +## Key Features + +- **Scraping Blog Posts:** Scrape a blog post and convert it to understandable draft. + +- **Automated Content Generation:** Draft engaging posts tailored to your audience. + +- **Scheduling and Management:** Allows for efficient scheduling of posts, ensuring a consistent online presence. + +- **Platform Integration:** Supports multiple social media platforms for broad outreach (Linkedin and X). + +## Getting Started + +1. **Clone the Repository:** + + ```bash + git clone https://github.com/phidatahq/phidata.git + ``` + +2. **Navigate to the Workflow Directory:** + + ```bash + cd phidata/examples/workflows/social-media-content-planner + ``` + +3. **Install Dependencies:** + + Ensure you have Python installed, then run: + + ```bash + pip install -r requirements.txt + ``` + +4. **Configure the Workflow:** + + Modify the `config.yaml` file to include your social media platform credentials and preferences. + +5. **Run the Workflow:** + + Execute the main script to start the content creation process: + + ```bash + python social_media_content_planner.py + ``` + +## Customization + +The workflow is designed to be flexible. You can adjust the llm model parameters, content templates, and scheduling settings within the configuration files to better suit your needs. + +## Contributing + +We welcome contributions to enhance this workflow. Please fork the repository, create a new branch for your feature or bug fix, and submit a pull request for review.