├── .gitignore ├── CODE_OF_CONDUCT.md ├── ChatAppGenAI.sln ├── ChatAppGenAI ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── ChatAppGenAI.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Phi3Runner.cs ├── Properties │ └── launchSettings.json ├── app.manifest └── phi3 │ └── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md └── SUPPORT.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ChatAppGenAI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI.sln -------------------------------------------------------------------------------- /ChatAppGenAI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/App.xaml -------------------------------------------------------------------------------- /ChatAppGenAI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/App.xaml.cs -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/StoreLogo.png -------------------------------------------------------------------------------- /ChatAppGenAI/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ChatAppGenAI/ChatAppGenAI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/ChatAppGenAI.csproj -------------------------------------------------------------------------------- /ChatAppGenAI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/MainWindow.xaml -------------------------------------------------------------------------------- /ChatAppGenAI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ChatAppGenAI/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Package.appxmanifest -------------------------------------------------------------------------------- /ChatAppGenAI/Phi3Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Phi3Runner.cs -------------------------------------------------------------------------------- /ChatAppGenAI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChatAppGenAI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/ChatAppGenAI/app.manifest -------------------------------------------------------------------------------- /ChatAppGenAI/phi3/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Phi3-Chat-WinUI3-Sample/HEAD/SUPPORT.md --------------------------------------------------------------------------------