Results 4 comments of 焰尾迭

` /// /// 包含编码器和解码器的构建者 /// /// 特定构建者 public interface ICoderBuilder { /// /// 添加编解码器 /// /// 编解码器 /// TBuilder TBuilder AddChannelHandler(IChannelHandler[] channelHandlers); }`

![image](https://user-images.githubusercontent.com/8163485/88881354-c8c16680-d261-11ea-87a1-6b78de149be6.png) ` tcpSocketClient = await SocketBuilderFactory.GetTcpSocketClientBuilder(connectInfo.IP, connectInfo.Port) .AddChannelHandler(GetChannelHandlers())`

![image](https://github.com/SciSharp/LLamaSharp/assets/8163485/174f12d8-4741-43ca-af8b-b1db19a8397c) ![image](https://github.com/SciSharp/LLamaSharp/assets/8163485/b51dd156-0be4-4827-8a31-77468a7fe7de)

![image](https://github.com/SciSharp/LLamaSharp/assets/8163485/0dc8fc49-53a1-4c3d-9c50-b19f84a5e74f) Thanks, I understand llama.cpp is used to load the quantized gguf model. One more question, which parameter in the sample code is used to enable the use of the...