Bugfix: Wrong size of embeddings. Closes #47
This commit is contained in:
parent
29e9fb66a3
commit
d5680144c5
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ _lib.llama_n_ctx.restype = c_int
|
|||
|
||||
|
||||
def llama_n_embd(ctx: llama_context_p) -> c_int:
|
||||
return _lib.llama_n_ctx(ctx)
|
||||
return _lib.llama_n_embd(ctx)
|
||||
|
||||
|
||||
_lib.llama_n_embd.argtypes = [llama_context_p]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue