├── .clang-format ├── .github └── workflows │ ├── ubuntu-clang19.yaml │ └── ubuntu-gcc13.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── cfg └── cpp-free-gpt.yml ├── chat.png ├── client ├── css │ └── style.css ├── html │ └── index.html ├── img │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── gpt.png │ ├── site.webmanifest │ └── user.png └── js │ ├── chat.js │ ├── highlight.min.js │ ├── highlightjs-copy.min.js │ └── icons.js ├── deprecated └── free_gpt.cpp ├── git-clang-format.py ├── include ├── cfg.h ├── free_gpt.h └── helper.hpp ├── src ├── free_gpt.cpp └── main.cpp ├── tools ├── Dockerfile ├── npm │ └── node_modules │ │ └── crypto-js │ │ ├── README.md │ │ └── crypto-js.js ├── requirements.txt └── zeus.py └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ubuntu-clang19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/.github/workflows/ubuntu-clang19.yaml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-gcc13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/.github/workflows/ubuntu-gcc13.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/README.md -------------------------------------------------------------------------------- /cfg/cpp-free-gpt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/cfg/cpp-free-gpt.yml -------------------------------------------------------------------------------- /chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/chat.png -------------------------------------------------------------------------------- /client/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/css/style.css -------------------------------------------------------------------------------- /client/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/html/index.html -------------------------------------------------------------------------------- /client/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /client/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /client/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/apple-touch-icon.png -------------------------------------------------------------------------------- /client/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/favicon-16x16.png -------------------------------------------------------------------------------- /client/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/favicon-32x32.png -------------------------------------------------------------------------------- /client/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/favicon.ico -------------------------------------------------------------------------------- /client/img/gpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/gpt.png -------------------------------------------------------------------------------- /client/img/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/site.webmanifest -------------------------------------------------------------------------------- /client/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/img/user.png -------------------------------------------------------------------------------- /client/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/js/chat.js -------------------------------------------------------------------------------- /client/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/js/highlight.min.js -------------------------------------------------------------------------------- /client/js/highlightjs-copy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/js/highlightjs-copy.min.js -------------------------------------------------------------------------------- /client/js/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/client/js/icons.js -------------------------------------------------------------------------------- /deprecated/free_gpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/deprecated/free_gpt.cpp -------------------------------------------------------------------------------- /git-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/git-clang-format.py -------------------------------------------------------------------------------- /include/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/include/cfg.h -------------------------------------------------------------------------------- /include/free_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/include/free_gpt.h -------------------------------------------------------------------------------- /include/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/include/helper.hpp -------------------------------------------------------------------------------- /src/free_gpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/src/free_gpt.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/tools/Dockerfile -------------------------------------------------------------------------------- /tools/npm/node_modules/crypto-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/tools/npm/node_modules/crypto-js/README.md -------------------------------------------------------------------------------- /tools/npm/node_modules/crypto-js/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/tools/npm/node_modules/crypto-js/crypto-js.js -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/tools/requirements.txt -------------------------------------------------------------------------------- /tools/zeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/tools/zeus.py -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-peak/cpp-freegpt-webui/HEAD/xmake.lua --------------------------------------------------------------------------------