├── .coveragerc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .sourcery.yaml ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── helpers.bat ├── helpers.sh ├── old ├── __init__.py ├── dolly.py ├── dolly_manager.py ├── flock.py └── test_dolly.py ├── pylintrc ├── pyproject.toml ├── requirements.txt ├── resources └── ai_settings_template.yaml ├── run_pylint.py └── shepherd.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/__init__.py -------------------------------------------------------------------------------- /helpers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/helpers.bat -------------------------------------------------------------------------------- /helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/helpers.sh -------------------------------------------------------------------------------- /old/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/old/__init__.py -------------------------------------------------------------------------------- /old/dolly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/old/dolly.py -------------------------------------------------------------------------------- /old/dolly_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/old/dolly_manager.py -------------------------------------------------------------------------------- /old/flock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/old/flock.py -------------------------------------------------------------------------------- /old/test_dolly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/old/test_dolly.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/ai_settings_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/resources/ai_settings_template.yaml -------------------------------------------------------------------------------- /run_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/run_pylint.py -------------------------------------------------------------------------------- /shepherd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc0rp/Auto-GPT-Dolly-Plugin/HEAD/shepherd.py --------------------------------------------------------------------------------