We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d97fbb3 + 7e8e140 commit ef31ec6Copy full SHA for ef31ec6
LLama/Native/DecodeResult.cs
@@ -19,4 +19,19 @@ public enum DecodeResult
19
/// Could not find a KV slot for the batch (try reducing the size of the batch or increase the context)
20
/// </summary>
21
NoKvSlot = 1,
22
+
23
+ /// <summary>
24
+ /// Compute was aborted (e.g. due to callback request or timeout)
25
+ /// </summary>
26
+ ComputeAborted = 2,
27
28
29
+ /// Failed to allocate memory or reserve output space
30
31
+ AllocationFailed = -2,
32
33
34
+ /// General failure during decode (e.g. internal error, slot failure)
35
36
+ DecodeFailed = -3,
37
}
0 commit comments