akmartin

Results 6 comments of akmartin

Looks like this can be fixed by enabling execute on the kernel executable. `chmod +x /home/userdir/stuff/icsharp/build/Release/bin/iCSharp.Kernel.exe`

For reference, my Dockerfile: ``` FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim WORKDIR /app COPY /publish . ENTRYPOINT ["dotnet", "Compatibility.Api.dll"] ```

Discovered after reading #136 that setting `SecurityMode.None` does work in the linux container. Unfortunately this is not compatible with legacy clients. I tried this change to my Dockerfile to see...

Thanks for your reply. I'm using Transport security and setting `binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Certificate;`. Shouldn't that skip negotiation and just and use certificate validation instead?

I have compiled llama.cpp with CUDA support and it works. I've tried it with a few different 7b models that work with llama.cpp but give this error with LlamaSharp. I've...

Looks like saying anything in the prompt that sounds like a go-ahead will usurp PLAN vs ACT mode. Another example: Model decided it couldn't create new classes. I said, no,...