├── .gitignore ├── Controllers ├── ChatGPT.cs └── LineWebHookController.cs ├── Program.cs ├── Properties ├── ServiceDependencies │ └── demo-chatGPT - Web Deploy │ │ └── profile.arm.json └── launchSettings.json ├── Readme.MD ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── chatGPTLineBot.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/ChatGPT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Controllers/ChatGPT.cs -------------------------------------------------------------------------------- /Controllers/LineWebHookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Controllers/LineWebHookController.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/ServiceDependencies/demo-chatGPT - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Properties/ServiceDependencies/demo-chatGPT - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Readme.MD -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/appsettings.json -------------------------------------------------------------------------------- /chatGPTLineBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isdaviddong/chatGPTLineBot/HEAD/chatGPTLineBot.csproj --------------------------------------------------------------------------------