├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── data.txt ├── deploy ├── __init__.py ├── config.py └── runpod.py ├── example.env ├── gptchain.py ├── pyproject.toml ├── requirements-train.txt ├── requirements.txt ├── train.py └── utils ├── __init__.py ├── data.py ├── prompts.py └── weights.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | models 3 | .DS_Store 4 | __pycache__ 5 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/bot.py -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/data.txt -------------------------------------------------------------------------------- /deploy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/deploy/config.py -------------------------------------------------------------------------------- /deploy/runpod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/deploy/runpod.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/example.env -------------------------------------------------------------------------------- /gptchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/gptchain.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/requirements-train.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/utils/prompts.py -------------------------------------------------------------------------------- /utils/weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanPeresy/gptchain/HEAD/utils/weights.py --------------------------------------------------------------------------------