Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit18e1ce7

Browse files
committed
standardize: update all projects to CrewAI 0.130.0
- Updated all pyproject.toml files to use CrewAI 0.130.0- Updated all requirements.txt files to use CrewAI 0.130.0- Updated README files with correct installation instructions- Ensures consistency and compatibility across all examples
1 parent5668e34 commit18e1ce7

File tree

32 files changed

+34
-32
lines changed

32 files changed

+34
-32
lines changed

‎CrewAI-LangGraph/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This example uses GPT-4.
2222

2323
-**Configure Environment**: Copy ``.env.example` and set up the environment variable
2424
-**Setup a credentials.json**: Follow the[google instructions](https://developers.google.com/gmail/api/quickstart/python#authorize_credentials_for_a_desktop_application), once you’ve downloaded the file, name it`credentials.json` and add to the root of the project,
25-
-**Install Dependencies**: Run`pip install -r requirements.txt`
25+
-**Install Dependencies**: Run`pip install -r requirements.txt` (includes crewAI==0.130.0)
2626
-**Execute the Script**: Run`python main.py`
2727

2828
##Details & Explanation

‎CrewAI-LangGraph/requirements.txt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
crewai==0.85.0
1+
crewai==0.130.0
22
langgraph==0.0.15
3-
langchain-community==0.0.14
3+
langchain-community==0.3.26
44
python-dotenv==1.0.0
55
google-search-results==2.1.0
66
google-api-python-client==2.114.0

‎README.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ crewAI is designed to facilitate the collaboration of role-playing AI agents.
44
This is a collection of examples of different ways to use the crewAI framework to automate the processes.
55
By[@joaomdmoura](https://x.com/joaomdmoura).
66

7+
**Note**: All examples have been standardized to use**CrewAI version 0.130.0** for consistency and compatibility.
8+
79
##Examples
810
-[Marketing Strategy](https://github.com/joaomdmoura/crewAI-examples/tree/main/marketing_strategy)
911
-[Surprise Trip](https://github.com/joaomdmoura/crewAI-examples/tree/main/surprise_trip)

‎azure_model/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is a simple example using the CrewAI framework with an Azure Open AI endpoi
77
This example uses the Azure OpenAI API to call a model.
88

99
-**Configure Environment**: Copy ``.env.example` and set up the environment variables the model, endpoint url, and api key.
10-
-**Install Dependencies**: Run`poetry install --no-root`.
10+
-**Install Dependencies**: Run`poetry install --no-root` (uses crewAI==0.130.0).
1111
-**Execute the Script**: Run`python main.py` to see a list of recommended changes to this document.
1212

1313
##Details & Explanation

‎azure_model/pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["ITLackey <itlackey@gmail.com>"]
66

77
[tool.poetry.dependencies]
88
python =">=3.10.0,<3.12"
9-
crewai ="^0.85.0"
9+
crewai ="^0.130.0"
1010
python-dotenv ="1.0.0"
1111
langchain_openai ="0.0.2"
1212

‎email_auto_responder_flow/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This flow is a great example of using Flows as a background worker that runs con
2929
Ensure you have Python >=3.10 <=3.13 installed on your system. First, if you haven't already, install CrewAI:
3030

3131
```bash
32-
pip install crewai
32+
pip install crewai==0.130.0
3333
```
3434

3535
Next, navigate to your project directory and install the dependencies:

‎email_auto_responder_flow/pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
requires-python =">=3.10,<=3.13"
99
dependencies = [
10-
"crewai[tools]==0.85.0",
10+
"crewai[tools]==0.130.0",
1111
"asyncio",
1212
"langchain-tools>=0.1.34",
1313
"crewai-tools>=0.12.0",

‎game-builder-crew/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ It uses GPT-4o by default so you should have access to that to run it.
2121
***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.*
2222

2323
-**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).
24-
-**Install Dependencies**: Run`poetry lock && poetry install`.
24+
-**Install Dependencies**: Run`poetry lock && poetry install` (uses crewAI==0.130.0).
2525
-**Customize**: Modify`src/game_builder_crew/main.py` to add custom inputs for your agents and tasks.
2626
-**Customize Further**: Check`src/game_builder_crew/config/agents.yaml` to update your agents and`src/game_builder_crew/config/tasks.yaml` to update your tasks.
2727
-**Execute the Script**: Run`poetry run game_builder_crew` and input your project details.

‎game-builder-crew/pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
66

77
[tool.poetry.dependencies]
88
python =">=3.10.0,<3.12"
9-
crewai ="^0.85.0"
9+
crewai ="^0.130.0"
1010
python-dotenv ="1.0.0"
1111

1212
[tool.pyright]

‎instagram_post/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This example uses OpenHermes 2.5 through Ollama by default so you should to down
2222
You can change the model by changing the`MODEL` env var in the`.env` file.
2323

2424
-**Configure Environment**: Copy ``.env.example` and set up the environment variables for[Browseless](https://www.browserless.io/),[Serper](https://serper.dev/).
25-
-**Install Dependencies**: Run`poetry install --no-root`.
25+
-**Install Dependencies**: Run`poetry install --no-root` (uses crewAI==0.130.0).
2626
-**Execute the Script**: Run`python main.py` and input your idea.
2727

2828
##Details & Explanation

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp