├── .env.example ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.ts ├── deploy_gcloud.sh ├── example_fly_io.toml ├── index.ts ├── nodemon.json ├── package.json ├── routes └── messages.ts ├── server.ts ├── src ├── chatHistory.ts └── gpt3.ts ├── tsconfig.json └── types └── request.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/README.md -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/config.ts -------------------------------------------------------------------------------- /deploy_gcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/deploy_gcloud.sh -------------------------------------------------------------------------------- /example_fly_io.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/example_fly_io.toml -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/index.ts -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/package.json -------------------------------------------------------------------------------- /routes/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/routes/messages.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/server.ts -------------------------------------------------------------------------------- /src/chatHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/src/chatHistory.ts -------------------------------------------------------------------------------- /src/gpt3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/src/gpt3.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/GPT_Demo/HEAD/types/request.ts --------------------------------------------------------------------------------