llama_eval_embd method
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,
  );
}