Fix type for eval_logits in LlamaState object
This commit is contained in:
parent
ec617c04c1
commit
bc853e3742
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class LlamaState:
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
eval_tokens: Deque[llama_cpp.llama_token],
|
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, # type: llama_cpp.Array[llama_cpp.c_uint8]
|
||||||
llama_state_size: llama_cpp.c_size_t,
|
llama_state_size: llama_cpp.c_size_t,
|
||||||
):
|
):
|
||||||
|
|
Loading…
Reference in a new issue