├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ └── pylint.yml ├── Instructions.md ├── config ├── agents.yaml └── tasks.yaml ├── main.py └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theCyberTech/crewai_basic_example/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theCyberTech/crewai_basic_example/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theCyberTech/crewai_basic_example/HEAD/Instructions.md -------------------------------------------------------------------------------- /config/agents.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/tasks.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theCyberTech/crewai_basic_example/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theCyberTech/crewai_basic_example/HEAD/requirements.txt --------------------------------------------------------------------------------