Fix type for eval_logits in LlamaState object

This commit is contained in:
Andrei Betlen 2023-05-06 21:32:50 -04:00
parent ec617c04c1
commit bc853e3742

View file

@ -51,7 +51,7 @@ class LlamaState:
def __init__(
self,
eval_tokens: Deque[llama_cpp.llama_token],
eval_logits: Deque[List[llama_cpp.c_float]],
eval_logits: Deque[List[float]],
llama_state, # type: llama_cpp.Array[llama_cpp.c_uint8]
llama_state_size: llama_cpp.c_size_t,
):