├── .coveragerc ├── .editorconfig ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .sourcery.yaml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── docs.md └── webui.py ├── helpers.bat ├── helpers.sh ├── prompt_templates ├── README.md └── monolithic.yaml ├── pylintrc ├── pyproject.toml ├── requirements.txt ├── run_pylint.py └── src └── auto_gpt_text_gen_plugin ├── __init__.py ├── client.py ├── default_prompt.py ├── monolithic_prompt.py ├── prompt_engine.py └── text_gen_plugin.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- 1 | Docs -------------------------------------------------------------------------------- /docs/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/docs/webui.py -------------------------------------------------------------------------------- /helpers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/helpers.bat -------------------------------------------------------------------------------- /helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/helpers.sh -------------------------------------------------------------------------------- /prompt_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/prompt_templates/README.md -------------------------------------------------------------------------------- /prompt_templates/monolithic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/prompt_templates/monolithic.yaml -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/run_pylint.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/__init__.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/client.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/default_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/default_prompt.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/monolithic_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/monolithic_prompt.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/prompt_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/prompt_engine.py -------------------------------------------------------------------------------- /src/auto_gpt_text_gen_plugin/text_gen_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-Text-Gen-Plugin/HEAD/src/auto_gpt_text_gen_plugin/text_gen_plugin.py --------------------------------------------------------------------------------