|
1234567891011121314151617181920 |
- # DecodeResult
-
- Namespace: LLama.Native
-
- Return codes from llama_decode
-
- ```csharp
- public enum DecodeResult
- ```
-
- Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [Enum](https://docs.microsoft.com/en-us/dotnet/api/system.enum) → [DecodeResult](./llama.native.decoderesult.md)<br>
- Implements [IComparable](https://docs.microsoft.com/en-us/dotnet/api/system.icomparable), [IFormattable](https://docs.microsoft.com/en-us/dotnet/api/system.iformattable), [IConvertible](https://docs.microsoft.com/en-us/dotnet/api/system.iconvertible)
-
- ## Fields
-
- | Name | Value | Description |
- | --- | --: | --- |
- | Error | -1 | An unspecified error |
- | Ok | 0 | Ok. |
- | NoKvSlot | 1 | Could not find a KV slot for the batch (try reducing the size of the batch or increase the context) |
|