llama_eval_embd method

int llama_eval_embd(
  1. Pointer<llama_context> ctx,
  2. Pointer<Float> embd,
  3. int n_tokens,
  4. int n_past,
)

Same as llama_eval, but use float matrix input directly. DEPRECATED: use llama_decode() instead

Implementation

int llama_eval_embd(
  ffi.Pointer<llama_context> ctx,
  ffi.Pointer<ffi.Float> embd,
  int n_tokens,
  int n_past,
) {
  return _llama_eval_embd(
    ctx,
    embd,
    n_tokens,
    n_past,
  );
}