-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe073d7
commit 8c2fd9c
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
cookbook/examples/workflows/social_media_content_planner/readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |