From 4eb6aa7dc44fc076f9cded2da00281472de1a982 Mon Sep 17 00:00:00 2001 From: Famiwaye Oluwatobiloba <147158531+TheCorporateAIGirl@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:00:03 +0100 Subject: [PATCH] docs: update marketing_strategy example to use uv Updated the installation and execution instructions to use UV instead of Poetry, aligning this example with the root repository's recent migration to UV package management. --- crews/marketing_strategy/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crews/marketing_strategy/README.md b/crews/marketing_strategy/README.md index 101d74e80..7fa4d55a8 100644 --- a/crews/marketing_strategy/README.md +++ b/crews/marketing_strategy/README.md @@ -21,13 +21,13 @@ It uses GPT-4o by default so you should have access to that to run it. ***Disclaimer:** This will use gpt-4o unless you change it to use a different model, and by doing so it may incur in different costs.* - **Configure Environment**: Copy `.env.example` and set up the environment variables for [OpenAI](https://platform.openai.com/api-keys) and other tools as needed, like [Serper](serper.dev). -- **Install Dependencies**: Run `poetry lock && poetry install`. +- **Install Dependencies**: Run uv sync. - **Customize**: Modify `src/marketing_posts/main.py` to add custom inputs for your agents and tasks. - **Customize Further**: Check `src/marketing_posts/config/agents.yaml` to update your agents and `src/marketing_posts/config/tasks.yaml` to update your tasks. -- **Execute the Script**: Run `poetry run marketing_posts` and input your project details. +- **Execute the Script**: Run uv run marketing_posts and input your project details. ## Details & Explanation -- **Running the Script**: Execute `poetry run marketing_posts`. The script will leverage the CrewAI framework to generate a detailed marketing strategy. +- **Running the Script**: Execute uv run marketing_posts. The script will leverage the CrewAI framework to generate a detailed marketing strategy. - **Key Components**: - `src/marketing_posts/main.py`: Main script file. - `src/marketing_posts/crew.py`: Main crew file where agents and tasks come together, and the main logic is executed.