├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── babyagi.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/README.md -------------------------------------------------------------------------------- /babyagi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/babyagi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurb18/babyagi4all-api/HEAD/requirements.txt --------------------------------------------------------------------------------