├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── doc_improvement.md │ └── enhancement.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitpod.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── config_patch_localai.json ├── config_patch_openai.json ├── configure_openai.sh ├── docker-compose.local.yml ├── docker-compose.yml ├── download_model.sh ├── getting-started-thumbnail.png └── init.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/.github/ISSUE_TEMPLATE/doc_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | models/ 2 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config_patch_localai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/config_patch_localai.json -------------------------------------------------------------------------------- /config_patch_openai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/config_patch_openai.json -------------------------------------------------------------------------------- /configure_openai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/configure_openai.sh -------------------------------------------------------------------------------- /docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/docker-compose.local.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/download_model.sh -------------------------------------------------------------------------------- /getting-started-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/getting-started-thumbnail.png -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattermost/openops/HEAD/init.sh --------------------------------------------------------------------------------