Skip to content

Commit ec32829

Browse files
committed
chore: setup openai
1 parent 26201be commit ec32829

File tree

6 files changed

+292
-5
lines changed

6 files changed

+292
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.volumes
22
coagent_demo_storage/
3+
.ropeproject
4+
.venv

examples/crew_ai/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
1. Fill up the `.env` file with your OpenAI API key.
44

55
```
6-
MODEL=<model-name>
7-
ANTHROPIC_API_KEY=<your-anthropic-api-key>
8-
OPENAI_API_KEY=<your-openai-api-key>
6+
MODEL=gpt-5-nano
7+
OPENAI_API_KEY=
98
```
109

1110
2. Install dependencies
@@ -20,6 +19,12 @@ crewai install
2019
crewai run
2120
```
2221

22+
You should be able to see an output similar to this:
23+
24+
<div align="center">
25+
<img src="./docs/sreen1.png" alt="CrewAI Output Example" width="600"/>
26+
</div>
27+
2328
### Pre-Requisites
2429

2530
- Python `>= v3.12`

examples/crew_ai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "crew_ai"
33
version = "0.1.0"
44
description = "crew-ai using crewAI"
5-
authors = [{ name = "Your Name", email = "you@example.com" }]
5+
authors = [{ name = "Leo Borai", email = "esteban@infinyon.com" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
88
"crewai[tools]==1.2.1"

0 commit comments

Comments
 (0)