Bugfix: Wrong size of embeddings. Closes #47
This commit is contained in:
parent
6d1bda443e
commit
38f442deb0
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ _lib.llama_n_ctx.restype = c_int
|
||||||
|
|
||||||
|
|
||||||
def llama_n_embd(ctx: llama_context_p) -> 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]
|
_lib.llama_n_embd.argtypes = [llama_context_p]
|
||||||
|
|
Loading…
Reference in a new issue