├── .gitattributes ├── .gitignore ├── AspireAppPhi3.ApiService ├── AspireAppPhi3.ApiService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── AspireAppPhi3.AppHost ├── AspireAppPhi3.AppHost.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── AspireAppPhi3.ServiceDefaults ├── AspireAppPhi3.ServiceDefaults.csproj └── Extensions.cs ├── AspireAppPhi3.Web ├── AspireAppPhi3.Web.csproj ├── Components │ ├── App.razor │ ├── Chatbot │ │ ├── ChatState.cs │ │ ├── Chatbot.razor │ │ ├── Chatbot.razor.css │ │ ├── Chatbot.razor.js │ │ ├── MessageProcessor.cs │ │ ├── ShowChatbotButton.razor │ │ └── ShowChatbotButton.razor.css │ ├── Layout │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ └── NavMenu.razor.css │ ├── Pages │ │ ├── Counter.razor │ │ ├── Error.razor │ │ ├── Home.razor │ │ └── Weather.razor │ ├── Routes.razor │ └── _Imports.razor ├── CustomChatCompletionService.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherApiClient.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── app.css │ ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ ├── chat.png │ └── favicon.png ├── AspireAppPhi3.sln ├── Phi-3 running locally.png ├── Preview of the app.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/.gitignore -------------------------------------------------------------------------------- /AspireAppPhi3.ApiService/AspireAppPhi3.ApiService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ApiService/AspireAppPhi3.ApiService.csproj -------------------------------------------------------------------------------- /AspireAppPhi3.ApiService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ApiService/Program.cs -------------------------------------------------------------------------------- /AspireAppPhi3.ApiService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ApiService/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.ApiService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ApiService/appsettings.Development.json -------------------------------------------------------------------------------- /AspireAppPhi3.ApiService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ApiService/appsettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.AppHost/AspireAppPhi3.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.AppHost/AspireAppPhi3.AppHost.csproj -------------------------------------------------------------------------------- /AspireAppPhi3.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.AppHost/Program.cs -------------------------------------------------------------------------------- /AspireAppPhi3.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /AspireAppPhi3.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.AppHost/appsettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.ServiceDefaults/AspireAppPhi3.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ServiceDefaults/AspireAppPhi3.ServiceDefaults.csproj -------------------------------------------------------------------------------- /AspireAppPhi3.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/AspireAppPhi3.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/AspireAppPhi3.Web.csproj -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/App.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/ChatState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/ChatState.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/Chatbot.razor.js -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/MessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/MessageProcessor.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/ShowChatbotButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/ShowChatbotButton.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Chatbot/ShowChatbotButton.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Chatbot/ShowChatbotButton.razor.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Pages/Counter.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Pages/Error.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Pages/Home.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/Routes.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Components/_Imports.razor -------------------------------------------------------------------------------- /AspireAppPhi3.Web/CustomChatCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/CustomChatCompletionService.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Program.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.Web/WeatherApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/WeatherApiClient.cs -------------------------------------------------------------------------------- /AspireAppPhi3.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/appsettings.Development.json -------------------------------------------------------------------------------- /AspireAppPhi3.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/appsettings.json -------------------------------------------------------------------------------- /AspireAppPhi3.Web/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/wwwroot/app.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/wwwroot/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/wwwroot/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /AspireAppPhi3.Web/wwwroot/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/wwwroot/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspireAppPhi3.Web/wwwroot/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/wwwroot/chat.png -------------------------------------------------------------------------------- /AspireAppPhi3.Web/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.Web/wwwroot/favicon.png -------------------------------------------------------------------------------- /AspireAppPhi3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/AspireAppPhi3.sln -------------------------------------------------------------------------------- /Phi-3 running locally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/Phi-3 running locally.png -------------------------------------------------------------------------------- /Preview of the app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/Preview of the app.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthshethia786/chatapp-dotnetAspire-ollama-phi3/HEAD/README.md --------------------------------------------------------------------------------