├── .env.example ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── api.py ├── data.pickle ├── main.py ├── requirements.txt └── utils └── auth.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "basic" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/api.py -------------------------------------------------------------------------------- /data.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/data.pickle -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klingefjord/chatgpt-telegram/HEAD/utils/auth.py --------------------------------------------------------------------------------