├── .gitattributes ├── .gitignore ├── Community.PowerToys.Run.Plugin.LocalLLM.sln ├── Community.PowerToys.Run.Plugin.LocalLLM ├── Community.PowerToys.Run.Plugin.LocalLLM.csproj ├── Images │ └── icon.png ├── Main.cs └── plugin.json ├── LICENSE.txt ├── README.md └── screenshots └── screenshot1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/.gitignore -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.LocalLLM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/Community.PowerToys.Run.Plugin.LocalLLM.sln -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.LocalLLM/Community.PowerToys.Run.Plugin.LocalLLM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/Community.PowerToys.Run.Plugin.LocalLLM/Community.PowerToys.Run.Plugin.LocalLLM.csproj -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.LocalLLM/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/Community.PowerToys.Run.Plugin.LocalLLM/Images/icon.png -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.LocalLLM/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/Community.PowerToys.Run.Plugin.LocalLLM/Main.cs -------------------------------------------------------------------------------- /Community.PowerToys.Run.Plugin.LocalLLM/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/Community.PowerToys.Run.Plugin.LocalLLM/plugin.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkdriller/PowerToys-Run-LocalLLm/HEAD/screenshots/screenshot1.png --------------------------------------------------------------------------------