CrewAI-readme-4.txt
· 408 B · Text
Orginalformat
my_project/
├── .gitignore
├── pyproject.toml
├── README.md
├── .env
└── src/
└── my_project/
├── __init__.py
├── main.py
├── crew.py
├── tools/
│ ├── custom_tool.py
│ └── __init__.py
└── config/
├── agents.yaml
└── tasks.yaml
1 | my_project/ |
2 | ├── .gitignore |
3 | ├── pyproject.toml |
4 | ├── README.md |
5 | ├── .env |
6 | └── src/ |
7 | └── my_project/ |
8 | ├── __init__.py |
9 | ├── main.py |
10 | ├── crew.py |
11 | ├── tools/ |
12 | │ ├── custom_tool.py |
13 | │ └── __init__.py |
14 | └── config/ |
15 | ├── agents.yaml |
16 | └── tasks.yaml |