├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── constants.py ├── example.env ├── ingest.py ├── koboldapillm.py ├── privateGPT.py ├── requirements-translate.txt ├── requirements.txt ├── source_documents └── state_of_the_union.txt └── translation.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/README.md -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/constants.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/example.env -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/ingest.py -------------------------------------------------------------------------------- /koboldapillm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/koboldapillm.py -------------------------------------------------------------------------------- /privateGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/privateGPT.py -------------------------------------------------------------------------------- /requirements-translate.txt: -------------------------------------------------------------------------------- 1 | deep-translator==1.10.1 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /source_documents/state_of_the_union.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/source_documents/state_of_the_union.txt -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janvarev/privateGPT/HEAD/translation.py --------------------------------------------------------------------------------