├── .devcontainer ├── Dockerfile ├── devcontainer.json └── post-create.sh ├── .gitignore ├── LICENSE ├── README.md ├── images ├── 20LMStudioSearchModel.png ├── 22ServerRunning.png ├── 30RunSimpleDemo.png ├── 35Localhostnetworkerror.png ├── 40chatfulldemo.gif └── SK-LM-Phi2-demo.gif └── src ├── sk-customLLM-customHttpClient ├── Program.cs └── sk-customLLM-customHttpClient.csproj ├── sk-customllm.sln ├── sk-customllm ├── CustomChatCompletionService.cs ├── CustomHttpMessageHandler.cs ├── Models │ ├── ChatMessage.cs │ ├── ChatRequest.cs │ └── ChatResponse.cs └── sk-customllm.csproj ├── sk-ollama-localserver-rpi ├── Program.cs └── sk-ollama-localserver-rpi.csproj ├── sk-ollama-localserver-ubuntu ├── Program.cs └── sk-ollama-localserver-ubuntu.csproj ├── sk-ollamacsharp ├── OllamaChatCompletionService.cs ├── OllamaTextGenerationService.cs └── sk-ollamacsharp.csproj └── sk-phi2-localserver-lmstudio ├── Program.cs └── sk-phi2-localserver-lmstudio.csproj /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/README.md -------------------------------------------------------------------------------- /images/20LMStudioSearchModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/20LMStudioSearchModel.png -------------------------------------------------------------------------------- /images/22ServerRunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/22ServerRunning.png -------------------------------------------------------------------------------- /images/30RunSimpleDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/30RunSimpleDemo.png -------------------------------------------------------------------------------- /images/35Localhostnetworkerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/35Localhostnetworkerror.png -------------------------------------------------------------------------------- /images/40chatfulldemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/40chatfulldemo.gif -------------------------------------------------------------------------------- /images/SK-LM-Phi2-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/images/SK-LM-Phi2-demo.gif -------------------------------------------------------------------------------- /src/sk-customLLM-customHttpClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customLLM-customHttpClient/Program.cs -------------------------------------------------------------------------------- /src/sk-customLLM-customHttpClient/sk-customLLM-customHttpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customLLM-customHttpClient/sk-customLLM-customHttpClient.csproj -------------------------------------------------------------------------------- /src/sk-customllm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm.sln -------------------------------------------------------------------------------- /src/sk-customllm/CustomChatCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/CustomChatCompletionService.cs -------------------------------------------------------------------------------- /src/sk-customllm/CustomHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/CustomHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/sk-customllm/Models/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/Models/ChatMessage.cs -------------------------------------------------------------------------------- /src/sk-customllm/Models/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/Models/ChatRequest.cs -------------------------------------------------------------------------------- /src/sk-customllm/Models/ChatResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/Models/ChatResponse.cs -------------------------------------------------------------------------------- /src/sk-customllm/sk-customllm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-customllm/sk-customllm.csproj -------------------------------------------------------------------------------- /src/sk-ollama-localserver-rpi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollama-localserver-rpi/Program.cs -------------------------------------------------------------------------------- /src/sk-ollama-localserver-rpi/sk-ollama-localserver-rpi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollama-localserver-rpi/sk-ollama-localserver-rpi.csproj -------------------------------------------------------------------------------- /src/sk-ollama-localserver-ubuntu/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollama-localserver-ubuntu/Program.cs -------------------------------------------------------------------------------- /src/sk-ollama-localserver-ubuntu/sk-ollama-localserver-ubuntu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollama-localserver-ubuntu/sk-ollama-localserver-ubuntu.csproj -------------------------------------------------------------------------------- /src/sk-ollamacsharp/OllamaChatCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollamacsharp/OllamaChatCompletionService.cs -------------------------------------------------------------------------------- /src/sk-ollamacsharp/OllamaTextGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollamacsharp/OllamaTextGenerationService.cs -------------------------------------------------------------------------------- /src/sk-ollamacsharp/sk-ollamacsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-ollamacsharp/sk-ollamacsharp.csproj -------------------------------------------------------------------------------- /src/sk-phi2-localserver-lmstudio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-phi2-localserver-lmstudio/Program.cs -------------------------------------------------------------------------------- /src/sk-phi2-localserver-lmstudio/sk-phi2-localserver-lmstudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/semantickernel-localLLMs/HEAD/src/sk-phi2-localserver-lmstudio/sk-phi2-localserver-lmstudio.csproj --------------------------------------------------------------------------------