llama_get_embeddings method

Pointer<Float> llama_get_embeddings(
  1. Pointer<llama_context> ctx
)

Get the embeddings for the input shape: n_embd (1-dimensional)

Implementation

ffi.Pointer<ffi.Float> llama_get_embeddings(
  ffi.Pointer<llama_context> ctx,
) {
  return _llama_get_embeddings(
    ctx,
  );
}