SciSharp / LLamaSharp

A C#/.NET library to run LLM (🦙LLaMA/LLaVA) on your local device efficiently.
https://scisharp.github.io/LLamaSharp
MIT License
2.7k stars 349 forks source link

Fixed `LLamaTokenDataArrayNative.Create`'s size initialization #981

Closed Lyrcaxis closed 1 week ago

Lyrcaxis commented 1 week ago

This PR fixes an initialization issue of LLamaTokenDataNativeArray's _size property, which is initialized at 0 image but when .Create() is called, it attempts to set _size to some value that HAS to be larger than 0, image ..which triggers this exception: image

martindevans commented 1 week ago

Thanks