├── .github └── workflows │ └── build.yml ├── .gitignore ├── ChatGPT.Build ├── ChatGPT.Build.csproj └── Program.cs ├── ChatGPT.Intergation.sln ├── ChatGPT.Intergation ├── App.razor ├── Assistant.cs ├── ChatGPT.Intergation.csproj ├── Data │ ├── WeatherForecast.cs │ └── WeatherForecastService.cs ├── Pages │ ├── AssistantChatGPT.razor │ ├── Counter.razor │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── FetchData.razor │ ├── Index.razor │ ├── _Host.cshtml │ └── _Layout.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── AnswerGeneratorService.cs │ └── IAnswerGeneratorService.cs ├── Shared │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ └── SurveyPrompt.razor ├── _Imports.razor ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ └── site.css │ └── favicon.ico ├── LICENSE └── README.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatGPT.Build/ChatGPT.Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Build/ChatGPT.Build.csproj -------------------------------------------------------------------------------- /ChatGPT.Build/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Build/Program.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation.sln -------------------------------------------------------------------------------- /ChatGPT.Intergation/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/App.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Assistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Assistant.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/ChatGPT.Intergation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/ChatGPT.Intergation.csproj -------------------------------------------------------------------------------- /ChatGPT.Intergation/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/AssistantChatGPT.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/AssistantChatGPT.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/Counter.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/Error.cshtml -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/FetchData.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/Index.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/_Host.cshtml -------------------------------------------------------------------------------- /ChatGPT.Intergation/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /ChatGPT.Intergation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Program.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChatGPT.Intergation/Services/AnswerGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Services/AnswerGeneratorService.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Services/IAnswerGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Services/IAnswerGeneratorService.cs -------------------------------------------------------------------------------- /ChatGPT.Intergation/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Shared/MainLayout.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /ChatGPT.Intergation/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Shared/NavMenu.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /ChatGPT.Intergation/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/_Imports.razor -------------------------------------------------------------------------------- /ChatGPT.Intergation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/appsettings.Development.json -------------------------------------------------------------------------------- /ChatGPT.Intergation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/appsettings.json -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/css/site.css -------------------------------------------------------------------------------- /ChatGPT.Intergation/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/ChatGPT.Intergation/wwwroot/favicon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HusanjonDeveloper/ChatGPT.Intergation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # ChatGPT.Intergation 3 | --------------------------------------------------------------------------------